snm.xml 315 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20250203" 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/OTA/60S/60S_REV2-v1.2.1-build1.img"
  198. size="5183988"
  199. />
  200. <package
  201. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-fr-FR.img"
  202. size="5183988"
  203. />
  204. <package
  205. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-es-ES.img"
  206. size="5183988"
  207. />
  208. <package
  209. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-it-IT.img"
  210. size="5183988"
  211. />
  212. <package
  213. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-de-DE.img"
  214. size="5183988"
  215. />
  216. <package
  217. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-nl-NL.img"
  218. size="5183988"
  219. />
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-ru-RU.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-cmn-CN.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-ko-KR.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-ja-JP.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-fi-FI.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-pl-PL.img"
  242. size="5183988"
  243. />
  244. </otaPackages>
  245. </productMenu>
  246. <productMenu id="sip"
  247. type="1" >
  248. </productMenu>
  249. <productMenu id="illusion"
  250. type="1" >
  251. </productMenu>
  252. <productMenu id="meshIntercom"
  253. type="30" >
  254. </productMenu>
  255. <productMenu id="meshIntercom+"
  256. type="3"
  257. url="2" >
  258. </productMenu>
  259. <productMenu id="waveIntercom"
  260. type="1" >
  261. </productMenu>
  262. <productMenu id="bluetoothIntercom"
  263. type="1"
  264. url="2" >
  265. </productMenu>
  266. <productMenu id="bluetoothIntercomGrouping"
  267. type="0" >
  268. </productMenu>
  269. <productMenu id="fmradio"
  270. type="1"
  271. url="1" >
  272. </productMenu>
  273. <productMenu id="phone"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="music"
  277. type="1" >
  278. </productMenu>
  279. <productMenu id="musicSharing"
  280. type="0" >
  281. </productMenu>
  282. <productMenu id="deviceSetting"
  283. type="1"
  284. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  285. </productMenu>
  286. <productMenu id="quickGuide"
  287. type="0"
  288. url=""
  289. size="1.12MB" >
  290. </productMenu>
  291. <productMenu id="userGuide"
  292. type="1"
  293. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.0_en_250808.pdf"
  294. size="2.0MB" >
  295. </productMenu>
  296. <productMenu id="videoGuide"
  297. type="0"
  298. url=""
  299. size="3.41MB" >
  300. </productMenu>
  301. <productMenu id="connectGuide"
  302. type="1"
  303. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  304. size="1.12MB" >
  305. </productMenu>
  306. <productMenu id="volume"
  307. type="16" >
  308. </productMenu>
  309. <productMenu id="soundMode"
  310. type="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="60X"
  547. name="60X"
  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="1.2"
  1295. latestVersionVoicePrompt="1.0"
  1296. show = "-1" >
  1297. <productMenu id="protocol"
  1298. type="2" >
  1299. </productMenu>
  1300. <productMenu id="ota"
  1301. type="2" >
  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/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-fr-FR.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-es-ES.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-it-IT.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-de-DE.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-nl-NL.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-ru-RU.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-cmn-CN.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-ko-KR.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-ja-JP.img"
  1403. size="5183988"
  1404. />
  1405. <package
  1406. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-fi-FI.img"
  1407. size="5183988"
  1408. />
  1409. <package
  1410. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-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="SPIDERSlim"
  1897. name="SPIDER Slim"
  1898. series="SPIDER"
  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-v2.0-build0.img"
  1972. size="5183988"
  1973. />
  1974. <package
  1975. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-fr-FR.img"
  1976. size="5183988"
  1977. />
  1978. <package
  1979. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-es-ES.img"
  1980. size="5183988"
  1981. />
  1982. <package
  1983. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-it-IT.img"
  1984. size="5183988"
  1985. />
  1986. <package
  1987. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-de-DE.img"
  1988. size="5183988"
  1989. />
  1990. <package
  1991. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-nl-NL.img"
  1992. size="5183988"
  1993. />
  1994. <package
  1995. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ru-RU.img"
  1996. size="5183988"
  1997. />
  1998. <package
  1999. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-cmn-CN.img"
  2000. size="5183988"
  2001. />
  2002. <package
  2003. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ko-KR.img"
  2004. size="5183988"
  2005. />
  2006. <package
  2007. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ja-JP.img"
  2008. size="5183988"
  2009. />
  2010. <package
  2011. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-fi-FI.img"
  2012. size="5183988"
  2013. />
  2014. <package
  2015. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-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/OUTLANDER/NS_OUTLANDER_01.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="VORTEXMESH"
  2083. name="VORTEX MESH"
  2084. series="Helmet"
  2085. latestVersion="0.1.11"
  2086. latestVersionVoicePrompt="1.1"
  2087. show = "-1" >
  2088. <productMenu id="protocol"
  2089. type="2" >
  2090. </productMenu>
  2091. <productMenu id="ota"
  2092. type="0" >
  2093. <otaLanguages>
  2094. <otaLanguage
  2095. id="0"
  2096. name="English"
  2097. package="0"
  2098. />
  2099. <otaLanguage
  2100. id="0"
  2101. name="French"
  2102. package="1"
  2103. />
  2104. <otaLanguage
  2105. id="0"
  2106. name="Spanish"
  2107. package="2"
  2108. />
  2109. <otaLanguage
  2110. id="0"
  2111. name="Italian"
  2112. package="3"
  2113. />
  2114. <otaLanguage
  2115. id="0"
  2116. name="German"
  2117. package="4"
  2118. />
  2119. <otaLanguage
  2120. id="0"
  2121. name="Dutch"
  2122. package="5"
  2123. />
  2124. <otaLanguage
  2125. id="0"
  2126. name="Russian"
  2127. package="6"
  2128. />
  2129. <otaLanguage
  2130. id="0"
  2131. name="Chinese"
  2132. package="7"
  2133. />
  2134. <otaLanguage
  2135. id="0"
  2136. name="Korean"
  2137. package="8"
  2138. />
  2139. <otaLanguage
  2140. id="0"
  2141. name="Japanese"
  2142. package="9"
  2143. />
  2144. <otaLanguage
  2145. id="0"
  2146. name="Finnish"
  2147. package="10"
  2148. />
  2149. <otaLanguage
  2150. id="0"
  2151. name="Polish"
  2152. package="11"
  2153. />
  2154. </otaLanguages>
  2155. <otaPackages>
  2156. <package
  2157. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  2158. size="5183988"
  2159. />
  2160. <package
  2161. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  2162. size="5183988"
  2163. />
  2164. <package
  2165. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  2166. size="5183988"
  2167. />
  2168. <package
  2169. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  2170. size="5183988"
  2171. />
  2172. <package
  2173. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  2174. size="5183988"
  2175. />
  2176. <package
  2177. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  2178. size="5183988"
  2179. />
  2180. <package
  2181. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  2182. size="5183988"
  2183. />
  2184. <package
  2185. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  2186. size="5183988"
  2187. />
  2188. <package
  2189. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  2190. size="5183988"
  2191. />
  2192. <package
  2193. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  2194. size="5183988"
  2195. />
  2196. <package
  2197. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  2198. size="5183988"
  2199. />
  2200. <package
  2201. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  2202. size="5183988"
  2203. />
  2204. </otaPackages>
  2205. </productMenu>
  2206. <productMenu id="wa"
  2207. type="0" >
  2208. </productMenu>
  2209. <productMenu id="led"
  2210. type="5" >
  2211. </productMenu>
  2212. <productMenu id="led+"
  2213. type="2"
  2214. url="1" >
  2215. </productMenu>
  2216. <productMenu id="meshIntercom"
  2217. type="30" >
  2218. </productMenu>
  2219. <productMenu id="meshIntercom+"
  2220. type="3"
  2221. url="2" >
  2222. </productMenu>
  2223. <productMenu id="waveIntercom"
  2224. type="1" >
  2225. </productMenu>
  2226. <productMenu id="fmradio"
  2227. type="0" >
  2228. </productMenu>
  2229. <productMenu id="phone"
  2230. type="1" >
  2231. </productMenu>
  2232. <productMenu id="music"
  2233. type="1" >
  2234. </productMenu>
  2235. <productMenu id="musicSharing"
  2236. type="0" >
  2237. </productMenu>
  2238. <productMenu id="deviceSetting"
  2239. type="1"
  2240. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2241. </productMenu>
  2242. <productMenu id="quickGuide"
  2243. type="0"
  2244. url=""
  2245. size="1.12MB" >
  2246. </productMenu>
  2247. <productMenu id="userGuide"
  2248. type="1"
  2249. url=""
  2250. size="2.0MB" >
  2251. </productMenu>
  2252. <productMenu id="videoGuide"
  2253. type="0"
  2254. url=""
  2255. size="3.41MB" >
  2256. </productMenu>
  2257. <productMenu id="volume"
  2258. type="16" >
  2259. </productMenu>
  2260. <productMenu id="battery"
  2261. type="1" >
  2262. </productMenu>
  2263. <productID id="6A12"
  2264. />
  2265. <productGroupable type="0"
  2266. />
  2267. </product>
  2268. <product id="Impulse"
  2269. name="Impulse"
  2270. series="Helmet"
  2271. latestVersion="1.4"
  2272. show = "1" >
  2273. <productMenu id="protocol"
  2274. type="2" >
  2275. </productMenu>
  2276. <productMenu id="alexa"
  2277. type="0" >
  2278. </productMenu>
  2279. <productMenu id="ota"
  2280. type="0" >
  2281. </productMenu>
  2282. <productMenu id="wa"
  2283. type="24" >
  2284. </productMenu>
  2285. <productMenu id="manager"
  2286. type="0" >
  2287. </productMenu>
  2288. <productMenu id="sip"
  2289. type="1" >
  2290. </productMenu>
  2291. <productMenu id="led"
  2292. type="1" >
  2293. <productMenuType version="1.0.1"
  2294. type="2"
  2295. />
  2296. <productMenuType version="1.0"
  2297. type="1"
  2298. />
  2299. </productMenu>
  2300. <productMenu id="meshIntercom"
  2301. type="30" >
  2302. <productMenuType version="1.1.1"
  2303. type="20"
  2304. />
  2305. </productMenu>
  2306. <productMenu id="meshIntercom+"
  2307. type="3"
  2308. url="2" >
  2309. <productMenuType version="1.3.9"
  2310. type="2"
  2311. />
  2312. <productMenuURL version="1.1.1"
  2313. url="0"
  2314. />
  2315. </productMenu>
  2316. <productMenu id="waveIntercom"
  2317. type="1" >
  2318. <productMenuType version="1.3.9"
  2319. type="0"
  2320. />
  2321. </productMenu>
  2322. <productMenu id="bluetoothIntercom"
  2323. type="1" >
  2324. </productMenu>
  2325. <productMenu id="phone"
  2326. type="1" >
  2327. </productMenu>
  2328. <productMenu id="music"
  2329. type="1" >
  2330. </productMenu>
  2331. <productMenu id="fmradio"
  2332. type="1" >
  2333. </productMenu>
  2334. <productMenu id="deviceSetting"
  2335. type="1"
  2336. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  2337. <productMenuURL version="1.3.9"
  2338. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  2339. />
  2340. <productMenuURL version="1.1.1"
  2341. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  2342. />
  2343. <productMenuURL version="1.0.4"
  2344. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  2345. />
  2346. </productMenu>
  2347. <productMenu id="quickGuide"
  2348. type="0"
  2349. url=""
  2350. size="344KB" >
  2351. </productMenu>
  2352. <productMenu id="userGuide"
  2353. type="1"
  2354. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  2355. size="3.41MB" >
  2356. </productMenu>
  2357. <productMenu id="connectGuide"
  2358. type="1"
  2359. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  2360. size="1.12MB" >
  2361. </productMenu>
  2362. <productMenu id="volume"
  2363. type="11" >
  2364. </productMenu>
  2365. <productMenu id="battery"
  2366. type="1" >
  2367. </productMenu>
  2368. <productID id="3148"
  2369. />
  2370. <productGroupable type="0"
  2371. />
  2372. </product>
  2373. <product id="Impulse"
  2374. name="Impulse"
  2375. series="Helmet"
  2376. latestVersion="2.0"
  2377. show = "-1" >
  2378. <productMenu id="protocol"
  2379. type="2" >
  2380. </productMenu>
  2381. <productMenu id="alexa"
  2382. type="0" >
  2383. </productMenu>
  2384. <productMenu id="ota"
  2385. type="0" >
  2386. </productMenu>
  2387. <productMenu id="wa"
  2388. type="8" >
  2389. </productMenu>
  2390. <productMenu id="manager"
  2391. type="0" >
  2392. </productMenu>
  2393. <productMenu id="sip"
  2394. type="1" >
  2395. </productMenu>
  2396. <productMenu id="led"
  2397. type="3" >
  2398. </productMenu>
  2399. <productMenu id="meshIntercom"
  2400. type="20" >
  2401. </productMenu>
  2402. <productMenu id="bluetoothIntercom"
  2403. type="1" >
  2404. </productMenu>
  2405. <productMenu id="phone"
  2406. type="1" >
  2407. </productMenu>
  2408. <productMenu id="music"
  2409. type="1" >
  2410. </productMenu>
  2411. <productMenu id="fmradio"
  2412. type="1" >
  2413. </productMenu>
  2414. <productMenu id="deviceSetting"
  2415. type="1"
  2416. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  2417. </productMenu>
  2418. <productMenu id="quickGuide"
  2419. type="1"
  2420. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  2421. size="344KB" >
  2422. </productMenu>
  2423. <productMenu id="userGuide"
  2424. type="1"
  2425. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  2426. size="3.41MB" >
  2427. </productMenu>
  2428. <productMenu id="volume"
  2429. type="11" >
  2430. </productMenu>
  2431. <productMenu id="battery"
  2432. type="1" >
  2433. </productMenu>
  2434. <productID id="3221"
  2435. />
  2436. <productGroupable type="0"
  2437. />
  2438. </product>
  2439. <product id="Stryker"
  2440. name="Stryker"
  2441. series="Helmet"
  2442. latestVersion="1.4"
  2443. show = "1" >
  2444. <productMenu id="protocol"
  2445. type="2" >
  2446. </productMenu>
  2447. <productMenu id="alexa"
  2448. type="0" >
  2449. </productMenu>
  2450. <productMenu id="ota"
  2451. type="0" >
  2452. </productMenu>
  2453. <productMenu id="wa"
  2454. type="40" >
  2455. </productMenu>
  2456. <productMenu id="manager"
  2457. type="0" >
  2458. </productMenu>
  2459. <productMenu id="sip"
  2460. type="1" >
  2461. </productMenu>
  2462. <productMenu id="led"
  2463. type="1" >
  2464. <productMenuType version="1.0.1"
  2465. type="2"
  2466. />
  2467. <productMenuType version="1.0"
  2468. type="1"
  2469. />
  2470. </productMenu>
  2471. <productMenu id="meshIntercom"
  2472. type="30" >
  2473. <productMenuType version="1.1.1"
  2474. type="20"
  2475. />
  2476. </productMenu>
  2477. <productMenu id="meshIntercom+"
  2478. type="3"
  2479. url="2" >
  2480. <productMenuType version="1.3.9"
  2481. type="2"
  2482. />
  2483. <productMenuURL version="1.1.1"
  2484. url="0"
  2485. />
  2486. </productMenu>
  2487. <productMenu id="waveIntercom"
  2488. type="1" >
  2489. <productMenuType version="1.2.9"
  2490. type="0"
  2491. />
  2492. </productMenu>
  2493. <productMenu id="bluetoothIntercom"
  2494. type="1" >
  2495. </productMenu>
  2496. <productMenu id="phone"
  2497. type="1" >
  2498. </productMenu>
  2499. <productMenu id="music"
  2500. type="1" >
  2501. </productMenu>
  2502. <productMenu id="fmradio"
  2503. type="1" >
  2504. </productMenu>
  2505. <productMenu id="deviceSetting"
  2506. type="1"
  2507. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  2508. <productMenuURL version="1.3.9"
  2509. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  2510. />
  2511. <productMenuURL version="1.1.1"
  2512. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  2513. />
  2514. <productMenuURL version="1.0.4"
  2515. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  2516. />
  2517. </productMenu>
  2518. <productMenu id="quickGuide"
  2519. type="0"
  2520. url=""
  2521. size="344KB" >
  2522. </productMenu>
  2523. <productMenu id="userGuide"
  2524. type="1"
  2525. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  2526. size="3.41MB" >
  2527. </productMenu>
  2528. <productMenu id="connectGuide"
  2529. type="1"
  2530. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  2531. size="1.12MB" >
  2532. </productMenu>
  2533. <productMenu id="volume"
  2534. type="11" >
  2535. </productMenu>
  2536. <productMenu id="battery"
  2537. type="1" >
  2538. </productMenu>
  2539. <productID id="3154"
  2540. />
  2541. <productGroupable type="0"
  2542. />
  2543. </product>
  2544. <product id="SRL3"
  2545. name="SRL3"
  2546. series="SRL"
  2547. latestVersion="1.5"
  2548. show = "1" >
  2549. <productMenu id="protocol"
  2550. type="2" >
  2551. </productMenu>
  2552. <productMenu id="alexa"
  2553. type="0" >
  2554. </productMenu>
  2555. <productMenu id="ota"
  2556. type="0" >
  2557. </productMenu>
  2558. <productMenu id="wa"
  2559. type="1" >
  2560. </productMenu>
  2561. <productMenu id="sip"
  2562. type="1" >
  2563. </productMenu>
  2564. <productMenu id="meshIntercom"
  2565. type="30" >
  2566. </productMenu>
  2567. <productMenu id="meshIntercom+"
  2568. type="3"
  2569. url="2" >
  2570. <productMenuType version="1.3.9"
  2571. type="2"
  2572. />
  2573. </productMenu>
  2574. <productMenu id="waveIntercom"
  2575. type="1" >
  2576. <productMenuType version="1.4.9"
  2577. type="0"
  2578. />
  2579. </productMenu>
  2580. <productMenu id="bluetoothIntercom"
  2581. type="1" >
  2582. </productMenu>
  2583. <productMenu id="phone"
  2584. type="1" >
  2585. </productMenu>
  2586. <productMenu id="music"
  2587. type="1" >
  2588. </productMenu>
  2589. <productMenu id="fmradio"
  2590. type="1" >
  2591. </productMenu>
  2592. <productMenu id="deviceSetting"
  2593. type="1"
  2594. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2595. <productMenuURL version="1.3"
  2596. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2597. />
  2598. </productMenu>
  2599. <productMenu id="quickGuide"
  2600. type="0"
  2601. url=""
  2602. size="344KB" >
  2603. </productMenu>
  2604. <productMenu id="userGuide"
  2605. type="1"
  2606. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  2607. size="3.41MB" >
  2608. </productMenu>
  2609. <productMenu id="connectGuide"
  2610. type="1"
  2611. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  2612. size="1.12MB" >
  2613. </productMenu>
  2614. <productMenu id="volume"
  2615. type="11" >
  2616. </productMenu>
  2617. <productMenu id="battery"
  2618. type="1" >
  2619. </productMenu>
  2620. <productID id="3219"
  2621. />
  2622. <productGroupable type="0"
  2623. />
  2624. </product>
  2625. <product id="SRL_Mesh"
  2626. name="SRL-Mesh"
  2627. series="SRL"
  2628. latestVersion="1.7"
  2629. show = "1" >
  2630. <productMenu id="protocol"
  2631. type="2" >
  2632. </productMenu>
  2633. <productMenu id="alexa"
  2634. type="0" >
  2635. </productMenu>
  2636. <productMenu id="ota"
  2637. type="0" >
  2638. </productMenu>
  2639. <productMenu id="wa"
  2640. type="1" >
  2641. </productMenu>
  2642. <productMenu id="sip"
  2643. type="1" >
  2644. </productMenu>
  2645. <productMenu id="meshIntercom"
  2646. type="30" >
  2647. <productMenuType version="1.1.1"
  2648. type="20"
  2649. />
  2650. </productMenu>
  2651. <productMenu id="meshIntercom+"
  2652. type="3"
  2653. url="2" >
  2654. <productMenuType version="1.5.9"
  2655. type="2"
  2656. />
  2657. <productMenuURL version="1.1.1"
  2658. url="0"
  2659. />
  2660. </productMenu>
  2661. <productMenu id="waveIntercom"
  2662. type="1" >
  2663. <productMenuType version="1.6.9"
  2664. type="0"
  2665. />
  2666. </productMenu>
  2667. <productMenu id="bluetoothIntercom"
  2668. type="1" >
  2669. </productMenu>
  2670. <productMenu id="phone"
  2671. type="1" >
  2672. </productMenu>
  2673. <productMenu id="music"
  2674. type="1" >
  2675. </productMenu>
  2676. <productMenu id="fmradio"
  2677. type="1" >
  2678. </productMenu>
  2679. <productMenu id="deviceSetting"
  2680. type="1"
  2681. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2682. <productMenuURL version="1.5"
  2683. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2684. />
  2685. <productMenuURL version="1.1.1"
  2686. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2687. />
  2688. <productMenuURL version="1.0.3"
  2689. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2690. />
  2691. </productMenu>
  2692. <productMenu id="quickGuide"
  2693. type="0"
  2694. url=""
  2695. size="344KB" >
  2696. </productMenu>
  2697. <productMenu id="userGuide"
  2698. type="1"
  2699. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  2700. size="3.41MB" >
  2701. </productMenu>
  2702. <productMenu id="connectGuide"
  2703. type="1"
  2704. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  2705. size="1.12MB" >
  2706. </productMenu>
  2707. <productMenu id="volume"
  2708. type="11" >
  2709. </productMenu>
  2710. <productMenu id="battery"
  2711. type="1" >
  2712. </productMenu>
  2713. <productID id="3216"
  2714. />
  2715. <productGroupable type="0"
  2716. />
  2717. </product>
  2718. <product id="SRL_EXT"
  2719. name="SRL-EXT"
  2720. series="SRL"
  2721. latestVersion="1.7"
  2722. show = "1" >
  2723. <productMenu id="protocol"
  2724. type="2" >
  2725. </productMenu>
  2726. <productMenu id="alexa"
  2727. type="0" >
  2728. </productMenu>
  2729. <productMenu id="ota"
  2730. type="0" >
  2731. </productMenu>
  2732. <productMenu id="wa"
  2733. type="0" >
  2734. </productMenu>
  2735. <productMenu id="sip"
  2736. type="1" >
  2737. </productMenu>
  2738. <productMenu id="meshIntercom"
  2739. type="30" >
  2740. <productMenuType version="1.1.1"
  2741. type="20"
  2742. />
  2743. </productMenu>
  2744. <productMenu id="meshIntercom+"
  2745. type="3"
  2746. url="2" >
  2747. <productMenuType version="1.5.9"
  2748. type="2"
  2749. />
  2750. <productMenuURL version="1.1.1"
  2751. url="0"
  2752. />
  2753. </productMenu>
  2754. <productMenu id="waveIntercom"
  2755. type="1" >
  2756. <productMenuType version="1.6.9"
  2757. type="0"
  2758. />
  2759. </productMenu>
  2760. <productMenu id="bluetoothIntercom"
  2761. type="1" >
  2762. </productMenu>
  2763. <productMenu id="phone"
  2764. type="1" >
  2765. </productMenu>
  2766. <productMenu id="music"
  2767. type="1" >
  2768. </productMenu>
  2769. <productMenu id="fmradio"
  2770. type="1" >
  2771. </productMenu>
  2772. <productMenu id="deviceSetting"
  2773. type="1"
  2774. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2775. <productMenuURL version="1.5"
  2776. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2777. />
  2778. <productMenuURL version="1.1.1"
  2779. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2780. />
  2781. <productMenuURL version="1.0.3"
  2782. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2783. />
  2784. </productMenu>
  2785. <productMenu id="quickGuide"
  2786. type="0"
  2787. url=""
  2788. size="344KB" >
  2789. </productMenu>
  2790. <productMenu id="userGuide"
  2791. type="1"
  2792. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  2793. size="3.41MB" >
  2794. </productMenu>
  2795. <productMenu id="connectGuide"
  2796. type="1"
  2797. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  2798. size="1.12MB" >
  2799. </productMenu>
  2800. <productMenu id="volume"
  2801. type="11" >
  2802. </productMenu>
  2803. <productMenu id="battery"
  2804. type="1" >
  2805. </productMenu>
  2806. <productID id="3212"
  2807. />
  2808. <productGroupable type="0"
  2809. />
  2810. </product>
  2811. <product id="SRL2"
  2812. name="SRL2"
  2813. series="SRL"
  2814. latestVersion="1.0.9"
  2815. show = "1" >
  2816. <productMenu id="protocol"
  2817. type="0">
  2818. </productMenu>
  2819. <productMenu id="sip"
  2820. type="1" >
  2821. </productMenu>
  2822. <productMenu id="bluetoothIntercom"
  2823. type="1" >
  2824. </productMenu>
  2825. <productMenu id="intercomSetting"
  2826. type="1" >
  2827. </productMenu>
  2828. <productMenu id="phone"
  2829. type="2" >
  2830. </productMenu>
  2831. <productMenu id="fmradio"
  2832. type="3" >
  2833. </productMenu>
  2834. <productMenu id="deviceSetting"
  2835. type="1"
  2836. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2837. </productMenu>
  2838. <productMenu id="quickGuide"
  2839. type="1"
  2840. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  2841. size="846KB" >
  2842. </productMenu>
  2843. <productMenu id="userGuide"
  2844. type="1"
  2845. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  2846. size="1.18MB" >
  2847. </productMenu>
  2848. <productMenu id="connectGuide"
  2849. type="1"
  2850. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  2851. size="1.12MB" >
  2852. </productMenu>
  2853. <productID id="4530"
  2854. />
  2855. <productGroupable type="1"
  2856. />
  2857. </product>
  2858. <product id="Neotec2"
  2859. name="SRL Neotec2"
  2860. series="SRL"
  2861. latestVersion="1.1.5"
  2862. show = "1" >
  2863. <productMenu id="protocol"
  2864. type="0">
  2865. </productMenu>
  2866. <productMenu id="sip"
  2867. type="1" >
  2868. </productMenu>
  2869. <productMenu id="bluetoothIntercom"
  2870. type="1" >
  2871. </productMenu>
  2872. <productMenu id="intercomSetting"
  2873. type="1" >
  2874. </productMenu>
  2875. <productMenu id="phone"
  2876. type="2" >
  2877. </productMenu>
  2878. <productMenu id="fmradio"
  2879. type="3" >
  2880. </productMenu>
  2881. <productMenu id="deviceSetting"
  2882. type="1"
  2883. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2884. </productMenu>
  2885. <productMenu id="quickGuide"
  2886. type="0"
  2887. url=""
  2888. size="796KB" >
  2889. </productMenu>
  2890. <productMenu id="userGuide"
  2891. type="1"
  2892. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  2893. size="1.90MB" >
  2894. </productMenu>
  2895. <productMenu id="connectGuide"
  2896. type="1"
  2897. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  2898. size="1.12MB" >
  2899. </productMenu>
  2900. <productID id="4510"
  2901. />
  2902. <productGroupable type="1"
  2903. />
  2904. </product>
  2905. <product id="SPIDERST2ANC"
  2906. name="SPIDER ST2 ANC"
  2907. series="SPIDER"
  2908. latestVersion="0.5.1"
  2909. latestVersionVoicePrompt="0.2"
  2910. latestVersionMesh="0.8"
  2911. show = "-1" >
  2912. <productMenu id="protocol"
  2913. type="2" >
  2914. </productMenu>
  2915. <productMenu id="ota"
  2916. type="0" >
  2917. <otaPackages>
  2918. <package
  2919. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  2920. size="2945812"
  2921. />
  2922. </otaPackages>
  2923. </productMenu>
  2924. <productMenu id="wa"
  2925. type="0" >
  2926. </productMenu>
  2927. <productMenu id="led"
  2928. type="1" >
  2929. </productMenu>
  2930. <productMenu id="meshIntercom"
  2931. type="30" >
  2932. </productMenu>
  2933. <productMenu id="fmradio"
  2934. type="1" >
  2935. </productMenu>
  2936. <productMenu id="phone"
  2937. type="1" >
  2938. </productMenu>
  2939. <productMenu id="music"
  2940. type="1" >
  2941. </productMenu>
  2942. <productMenu id="musicSharing"
  2943. type="0" >
  2944. </productMenu>
  2945. <productMenu id="deviceSetting"
  2946. type="1"
  2947. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_02.xml" >
  2948. </productMenu>
  2949. <productMenu id="quickGuide"
  2950. type="1"
  2951. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  2952. size="1.12MB" >
  2953. </productMenu>
  2954. <productMenu id="userGuide"
  2955. type="1"
  2956. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  2957. size="2.0MB" >
  2958. </productMenu>
  2959. <productMenu id="videoGuide"
  2960. type="1"
  2961. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2962. size="3.41MB" >
  2963. </productMenu>
  2964. <productMenu id="volume"
  2965. type="12" >
  2966. </productMenu>
  2967. <productMenu id="battery"
  2968. type="1" >
  2969. </productMenu>
  2970. <productID id="6A00"
  2971. />
  2972. <productGroupable type="0"
  2973. />
  2974. </product>
  2975. <product id="SPIDER_ST1"
  2976. name="SPIDER ST1"
  2977. series="SPIDER"
  2978. latestVersion="2.5"
  2979. latestVersionVoicePrompt="1.1"
  2980. show = "1" >
  2981. <productMenu id="protocol"
  2982. type="2" >
  2983. </productMenu>
  2984. <productMenu id="alexa"
  2985. type="0" >
  2986. </productMenu>
  2987. <productMenu id="ota"
  2988. type="2" >
  2989. <productMenuType version="2.1.9"
  2990. type="0"
  2991. />
  2992. <otaPackages>
  2993. <package
  2994. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5-build1.img"
  2995. size="2945812"
  2996. />
  2997. </otaPackages>
  2998. </productMenu>
  2999. <productMenu id="wa"
  3000. type="0" >
  3001. </productMenu>
  3002. <productMenu id="meshIntercom"
  3003. type="30" >
  3004. <productMenuType version="2.1.1"
  3005. type="20"
  3006. />
  3007. </productMenu>
  3008. <productMenu id="meshIntercom+"
  3009. type="3"
  3010. url="2" >
  3011. <productMenuType version="2.2.9"
  3012. type="2"
  3013. />
  3014. <productMenuURL version="2.1.1"
  3015. url="0"
  3016. />
  3017. </productMenu>
  3018. <productMenu id="waveIntercom"
  3019. type="1" >
  3020. <productMenuType version="2.3.9"
  3021. type="0"
  3022. />
  3023. </productMenu>
  3024. <productMenu id="phone"
  3025. type="1" >
  3026. </productMenu>
  3027. <productMenu id="music"
  3028. type="1" >
  3029. </productMenu>
  3030. <productMenu id="musicSharing"
  3031. type="0" >
  3032. </productMenu>
  3033. <productMenu id="deviceSetting"
  3034. type="1"
  3035. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  3036. <productMenuURL version="2.4.9"
  3037. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  3038. />
  3039. <productMenuURL version="2.2.2"
  3040. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  3041. />
  3042. <productMenuURL version="2.1.1"
  3043. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  3044. />
  3045. </productMenu>
  3046. <productMenu id="quickGuide"
  3047. type="0"
  3048. url=""
  3049. size="1.12MB" >
  3050. </productMenu>
  3051. <productMenu id="userGuide"
  3052. type="1"
  3053. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  3054. size="2.0MB" >
  3055. </productMenu>
  3056. <productMenu id="videoGuide"
  3057. type="1"
  3058. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  3059. size="3.41MB" >
  3060. </productMenu>
  3061. <productMenu id="connectGuide"
  3062. type="1"
  3063. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  3064. size="1.12MB" >
  3065. </productMenu>
  3066. <productMenu id="volume"
  3067. type="12" >
  3068. </productMenu>
  3069. <productMenu id="battery"
  3070. type="1" >
  3071. </productMenu>
  3072. <productID id="6800"
  3073. />
  3074. <productGroupable type="0"
  3075. />
  3076. </product>
  3077. <product id="SPIDER_ST1"
  3078. name="SPIDER ST1"
  3079. series="SPIDER"
  3080. latestVersion="1.2.2"
  3081. show = "-1" >
  3082. <productMenu id="protocol"
  3083. type="2" >
  3084. </productMenu>
  3085. <productMenu id="alexa"
  3086. type="0" >
  3087. </productMenu>
  3088. <productMenu id="ota"
  3089. type="0" >
  3090. </productMenu>
  3091. <productMenu id="wa"
  3092. type="0" >
  3093. </productMenu>
  3094. <productMenu id="meshIntercom"
  3095. type="20" >
  3096. </productMenu>
  3097. <productMenu id="phone"
  3098. type="1" >
  3099. </productMenu>
  3100. <productMenu id="music"
  3101. type="1" >
  3102. </productMenu>
  3103. <productMenu id="deviceSetting"
  3104. type="1"
  3105. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  3106. </productMenu>
  3107. <productMenu id="quickGuide"
  3108. type="0"
  3109. url=""
  3110. size="1.12MB" >
  3111. </productMenu>
  3112. <productMenu id="userGuide"
  3113. type="1"
  3114. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  3115. size="2.0MB" >
  3116. </productMenu>
  3117. <productMenu id="videoGuide"
  3118. type="1"
  3119. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  3120. size="3.41MB" >
  3121. </productMenu>
  3122. <productMenu id="volume"
  3123. type="13" >
  3124. <productMenuType version="1.1.6"
  3125. type="14"/>
  3126. </productMenu>
  3127. <productMenu id="battery"
  3128. type="1" >
  3129. </productMenu>
  3130. <productID id="6510"
  3131. />
  3132. <productGroupable type="0"
  3133. />
  3134. </product>
  3135. <product id="SPIDER_RT1"
  3136. name="SPIDER RT1"
  3137. series="SPIDER"
  3138. latestVersion="2.5"
  3139. latestVersionVoicePrompt="1.1"
  3140. show = "1" >
  3141. <productMenu id="protocol"
  3142. type="2" >
  3143. </productMenu>
  3144. <productMenu id="alexa"
  3145. type="0" >
  3146. </productMenu>
  3147. <productMenu id="ota"
  3148. type="2" >
  3149. <productMenuType version="2.1.9"
  3150. type="0"
  3151. />
  3152. <otaPackages>
  3153. <package
  3154. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5-build1.img"
  3155. size="2945812"
  3156. />
  3157. </otaPackages>
  3158. </productMenu>
  3159. <productMenu id="wa"
  3160. type="0" >
  3161. </productMenu>
  3162. <productMenu id="meshIntercom"
  3163. type="30" >
  3164. <productMenuType version="2.1.1"
  3165. type="20"
  3166. />
  3167. </productMenu>
  3168. <productMenu id="meshIntercom+"
  3169. type="3"
  3170. url="2" >
  3171. <productMenuType version="2.2.9"
  3172. type="2"
  3173. />
  3174. <productMenuURL version="2.1.1"
  3175. url="0"
  3176. />
  3177. </productMenu>
  3178. <productMenu id="waveIntercom"
  3179. type="1" >
  3180. <productMenuType version="2.3.9"
  3181. type="0"
  3182. />
  3183. </productMenu>
  3184. <productMenu id="phone"
  3185. type="1" >
  3186. </productMenu>
  3187. <productMenu id="music"
  3188. type="1" >
  3189. </productMenu>
  3190. <productMenu id="musicSharing"
  3191. type="0" >
  3192. </productMenu>
  3193. <productMenu id="deviceSetting"
  3194. type="1"
  3195. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  3196. <productMenuURL version="2.4.9"
  3197. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  3198. />
  3199. <productMenuURL version="2.2.2"
  3200. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  3201. />
  3202. <productMenuURL version="2.1.1"
  3203. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  3204. />
  3205. </productMenu>
  3206. <productMenu id="quickGuide"
  3207. type="0"
  3208. url=""
  3209. size="1.12MB" >
  3210. </productMenu>
  3211. <productMenu id="userGuide"
  3212. type="1"
  3213. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  3214. size="2.0MB" >
  3215. </productMenu>
  3216. <productMenu id="videoGuide"
  3217. type="1"
  3218. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  3219. size="3.41MB" >
  3220. </productMenu>
  3221. <productMenu id="connectGuide"
  3222. type="1"
  3223. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  3224. size="1.12MB" >
  3225. </productMenu>
  3226. <productMenu id="volume"
  3227. type="12" >
  3228. </productMenu>
  3229. <productMenu id="battery"
  3230. type="1" >
  3231. </productMenu>
  3232. <productID id="6810"
  3233. />
  3234. <productGroupable type="0"
  3235. />
  3236. </product>
  3237. <product id="SPIDER_RT1"
  3238. name="SPIDER RT1"
  3239. series="SPIDER"
  3240. latestVersion="1.2.2"
  3241. show = "-1" >
  3242. <productMenu id="protocol"
  3243. type="2" >
  3244. </productMenu>
  3245. <productMenu id="alexa"
  3246. type="0" >
  3247. </productMenu>
  3248. <productMenu id="ota"
  3249. type="0" >
  3250. </productMenu>
  3251. <productMenu id="wa"
  3252. type="0" >
  3253. </productMenu>
  3254. <productMenu id="meshIntercom"
  3255. type="20" >
  3256. </productMenu>
  3257. <productMenu id="phone"
  3258. type="1" >
  3259. </productMenu>
  3260. <productMenu id="music"
  3261. type="1" >
  3262. </productMenu>
  3263. <productMenu id="deviceSetting"
  3264. type="1"
  3265. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  3266. </productMenu>
  3267. <productMenu id="quickGuide"
  3268. type="0"
  3269. url=""
  3270. size="1.32MB" >
  3271. </productMenu>
  3272. <productMenu id="userGuide"
  3273. type="1"
  3274. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  3275. size="1.79MB" >
  3276. </productMenu>
  3277. <productMenu id="videoGuide"
  3278. type="1"
  3279. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  3280. size="3.41MB" >
  3281. </productMenu>
  3282. <productMenu id="volume"
  3283. type="13" >
  3284. <productMenuType version="1.1.6"
  3285. type="14"/>
  3286. </productMenu>
  3287. <productMenu id="battery"
  3288. type="1" >
  3289. </productMenu>
  3290. <productID id="6500"
  3291. />
  3292. <productGroupable type="0"
  3293. />
  3294. </product>
  3295. <product id="30K"
  3296. name="30K"
  3297. series="30"
  3298. latestVersion="4.5"
  3299. show = "1" >
  3300. <productMenu id="protocol"
  3301. type="2" >
  3302. </productMenu>
  3303. <productMenu id="alexa"
  3304. type="0" >
  3305. </productMenu>
  3306. <productMenu id="wa"
  3307. type="1" >
  3308. </productMenu>
  3309. <productMenu id="sip"
  3310. type="1" >
  3311. </productMenu>
  3312. <productMenu id="meshIntercom"
  3313. type="30" >
  3314. <productMenuType version="4.0.4"
  3315. type="20"
  3316. />
  3317. </productMenu>
  3318. <productMenu id="meshIntercom+"
  3319. type="3"
  3320. url="2" >
  3321. <productMenuType version="4.3.9"
  3322. type="2"
  3323. />
  3324. <productMenuURL version="4.0.4"
  3325. url="0"
  3326. />
  3327. </productMenu>
  3328. <productMenu id="waveIntercom"
  3329. type="1" >
  3330. <productMenuType version="4.4.9"
  3331. type="0"
  3332. />
  3333. </productMenu>
  3334. <productMenu id="bluetoothIntercom"
  3335. type="1" >
  3336. </productMenu>
  3337. <productMenu id="phone"
  3338. type="1" >
  3339. </productMenu>
  3340. <productMenu id="music"
  3341. type="1" >
  3342. </productMenu>
  3343. <productMenu id="fmradio"
  3344. type="1" >
  3345. </productMenu>
  3346. <productMenu id="deviceSetting"
  3347. type="1"
  3348. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  3349. <productMenuURL version="4.3"
  3350. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  3351. />
  3352. <productMenuURL version="4.2"
  3353. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  3354. />
  3355. <productMenuURL version="4.0.4"
  3356. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  3357. />
  3358. </productMenu>
  3359. <productMenu id="quickGuide"
  3360. type="0"
  3361. url=""
  3362. size="934KB" >
  3363. </productMenu>
  3364. <productMenu id="userGuide"
  3365. type="1"
  3366. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  3367. size="1.14MB" >
  3368. </productMenu>
  3369. <productMenu id="connectGuide"
  3370. type="1"
  3371. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  3372. size="1.12MB" >
  3373. </productMenu>
  3374. <productMenu id="volume"
  3375. type="11" >
  3376. </productMenu>
  3377. <productMenu id="battery"
  3378. type="1" >
  3379. </productMenu>
  3380. <productID id="3211"
  3381. />
  3382. <productGroupable type="0"
  3383. />
  3384. </product>
  3385. <product id="30K"
  3386. name="30K"
  3387. series="30"
  3388. latestVersion="3.5"
  3389. show = "-1" >
  3390. <productMenu id="protocol"
  3391. type="1"
  3392. url="0">
  3393. </productMenu>
  3394. <productMenu id="wa"
  3395. type="7" >
  3396. </productMenu>
  3397. <productMenu id="sip"
  3398. type="1" >
  3399. </productMenu>
  3400. <productMenu id="meshIntercom"
  3401. type="20" >
  3402. <productMenuType version="2.9.9"
  3403. type="10"
  3404. />
  3405. </productMenu>
  3406. <productMenu id="meshIntercom+"
  3407. type="3"
  3408. url="2" >
  3409. <productMenuType version="3.4.9"
  3410. type="2"
  3411. />
  3412. <productMenuType version="2.9.9"
  3413. type="1"
  3414. />
  3415. <productMenuURL version="3.3.1"
  3416. url="0"
  3417. />
  3418. </productMenu>
  3419. <productMenu id="bluetoothIntercom"
  3420. type="1" >
  3421. </productMenu>
  3422. <productMenu id="phone"
  3423. type="1" >
  3424. </productMenu>
  3425. <productMenu id="music"
  3426. type="1" >
  3427. </productMenu>
  3428. <productMenu id="fmradio"
  3429. type="1" >
  3430. </productMenu>
  3431. <productMenu id="deviceSetting"
  3432. type="1"
  3433. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  3434. <productMenuURL version="3.4.9"
  3435. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  3436. />
  3437. <productMenuURL version="3.3.1"
  3438. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  3439. />
  3440. <productMenuURL version="3.0.1"
  3441. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  3442. />
  3443. <productMenuURL version="2.3.1"
  3444. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  3445. />
  3446. <productMenuURL version="2.0"
  3447. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  3448. />
  3449. <productMenuURL version="1.0.3"
  3450. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  3451. />
  3452. </productMenu>
  3453. <productMenu id="quickGuide"
  3454. type="0"
  3455. url=""
  3456. size="1.06MB" >
  3457. </productMenu>
  3458. <productMenu id="userGuide"
  3459. type="1"
  3460. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  3461. size="3.15MB" >
  3462. </productMenu>
  3463. <productMenu id="volume"
  3464. type="1" >
  3465. </productMenu>
  3466. <productID id="3110"
  3467. />
  3468. <productGroupable type="0"
  3469. />
  3470. </product>
  3471. <product id="FURY"
  3472. name="FURY"
  3473. series="Helmet"
  3474. latestVersion="1.0"
  3475. show = "-1" >
  3476. <productMenu id="protocol"
  3477. type="2" >
  3478. </productMenu>
  3479. <productMenu id="alexa"
  3480. type="0" >
  3481. </productMenu>
  3482. <productMenu id="ota"
  3483. type="0" >
  3484. </productMenu>
  3485. <productMenu id="wa"
  3486. type="0" >
  3487. </productMenu>
  3488. <productMenu id="meshIntercom"
  3489. type="20" >
  3490. </productMenu>
  3491. <productMenu id="phone"
  3492. type="1" >
  3493. </productMenu>
  3494. <productMenu id="music"
  3495. type="1" >
  3496. </productMenu>
  3497. <productMenu id="fmradio"
  3498. type="1" >
  3499. </productMenu>
  3500. <productMenu id="deviceSetting"
  3501. type="1"
  3502. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  3503. </productMenu>
  3504. <productMenu id="quickGuide"
  3505. type="1"
  3506. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  3507. size="1.12MB" >
  3508. </productMenu>
  3509. <productMenu id="userGuide"
  3510. type="1"
  3511. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  3512. size="2.0MB" >
  3513. </productMenu>
  3514. <productMenu id="volume"
  3515. type="13" >
  3516. </productMenu>
  3517. <productMenu id="battery"
  3518. type="1" >
  3519. </productMenu>
  3520. <productID id="5552"
  3521. />
  3522. <productGroupable type="0"
  3523. />
  3524. </product>
  3525. <product id="MomentumM"
  3526. name="Momentum EVO"
  3527. series="Helmet"
  3528. latestVersion="2.1.2"
  3529. show = "1" >
  3530. <productMenu id="protocol"
  3531. type="1"
  3532. url="0">
  3533. </productMenu>
  3534. <productMenu id="wa"
  3535. type="3" >
  3536. </productMenu>
  3537. <productMenu id="sip"
  3538. type="1" >
  3539. </productMenu>
  3540. <productMenu id="meshIntercom"
  3541. type="20" >
  3542. <productMenuType version="1.9.9"
  3543. type="10"
  3544. />
  3545. </productMenu>
  3546. <productMenu id="bluetoothIntercom"
  3547. type="1" >
  3548. </productMenu>
  3549. <productMenu id="phone"
  3550. type="1" >
  3551. </productMenu>
  3552. <productMenu id="music"
  3553. type="1" >
  3554. </productMenu>
  3555. <productMenu id="fmradio"
  3556. type="1" >
  3557. </productMenu>
  3558. <productMenu id="deviceSetting"
  3559. type="1"
  3560. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  3561. <productMenuURL version="1.0.1"
  3562. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  3563. />
  3564. </productMenu>
  3565. <productMenu id="quickGuide"
  3566. type="1"
  3567. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  3568. size="1.06MB" >
  3569. </productMenu>
  3570. <productMenu id="userGuide"
  3571. type="1"
  3572. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  3573. size="3.15MB" >
  3574. </productMenu>
  3575. <productMenu id="connectGuide"
  3576. type="1"
  3577. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  3578. size="1.12MB" >
  3579. </productMenu>
  3580. <productMenu id="volume"
  3581. type="2" >
  3582. </productMenu>
  3583. <productID id="3116"
  3584. />
  3585. <productGroupable type="0"
  3586. />
  3587. </product>
  3588. <product id="Momentum"
  3589. name="Momentum"
  3590. series="Helmet"
  3591. latestVersion="1.0.9"
  3592. show = "1" >
  3593. <productMenu id="protocol"
  3594. type="0">
  3595. </productMenu>
  3596. <productMenu id="sip"
  3597. type="1" >
  3598. </productMenu>
  3599. <productMenu id="bluetoothIntercom"
  3600. type="1" >
  3601. </productMenu>
  3602. <productMenu id="intercomSetting"
  3603. type="1" >
  3604. </productMenu>
  3605. <productMenu id="phone"
  3606. type="2" >
  3607. </productMenu>
  3608. <productMenu id="fmradio"
  3609. type="3" >
  3610. </productMenu>
  3611. <productMenu id="deviceSetting"
  3612. type="1"
  3613. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3614. </productMenu>
  3615. <productMenu id="quickGuide"
  3616. type="1"
  3617. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  3618. size="796KB" >
  3619. </productMenu>
  3620. <productMenu id="userGuide"
  3621. type="1"
  3622. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  3623. size="1.90MB" >
  3624. </productMenu>
  3625. <productMenu id="connectGuide"
  3626. type="1"
  3627. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  3628. size="1.12MB" >
  3629. </productMenu>
  3630. <productID id="4310"
  3631. />
  3632. <productGroupable type="1"
  3633. />
  3634. </product>
  3635. <product id="Momentum_Pro"
  3636. name="Momentum Pro"
  3637. series="Helmet"
  3638. latestVersion="1.0.6"
  3639. show = "1" >
  3640. <productMenu id="protocol"
  3641. type="0">
  3642. </productMenu>
  3643. <productMenu id="sip"
  3644. type="1" >
  3645. </productMenu>
  3646. <productMenu id="bluetoothIntercom"
  3647. type="1" >
  3648. </productMenu>
  3649. <productMenu id="intercomSetting"
  3650. type="1" >
  3651. </productMenu>
  3652. <productMenu id="phone"
  3653. type="2" >
  3654. </productMenu>
  3655. <productMenu id="fmradio"
  3656. type="3" >
  3657. </productMenu>
  3658. <productMenu id="deviceSetting"
  3659. type="1"
  3660. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3661. </productMenu>
  3662. <productMenu id="quickGuide"
  3663. type="1"
  3664. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  3665. size="796KB" >
  3666. </productMenu>
  3667. <productMenu id="userGuide"
  3668. type="1"
  3669. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  3670. size="1.90MB" >
  3671. </productMenu>
  3672. <productMenu id="connectGuide"
  3673. type="1"
  3674. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  3675. size="1.12MB" >
  3676. </productMenu>
  3677. <productID id="4330"
  3678. />
  3679. <productGroupable type="1"
  3680. />
  3681. </product>
  3682. <product id="Momentum_INC"
  3683. name="Momentum INC"
  3684. series="Helmet"
  3685. latestVersion="1.0.7"
  3686. show = "1" >
  3687. <productMenu id="protocol"
  3688. type="0">
  3689. </productMenu>
  3690. <productMenu id="sip"
  3691. type="1" >
  3692. </productMenu>
  3693. <productMenu id="bluetoothIntercom"
  3694. type="1" >
  3695. </productMenu>
  3696. <productMenu id="intercomSetting"
  3697. type="1" >
  3698. </productMenu>
  3699. <productMenu id="phone"
  3700. type="2" >
  3701. </productMenu>
  3702. <productMenu id="fmradio"
  3703. type="3" >
  3704. </productMenu>
  3705. <productMenu id="deviceSetting"
  3706. type="1"
  3707. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3708. </productMenu>
  3709. <productMenu id="quickGuide"
  3710. type="1"
  3711. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  3712. size="794KB" >
  3713. </productMenu>
  3714. <productMenu id="userGuide"
  3715. type="1"
  3716. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  3717. size="1.53MB" >
  3718. </productMenu>
  3719. <productMenu id="connectGuide"
  3720. type="1"
  3721. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  3722. size="1.12MB" >
  3723. </productMenu>
  3724. <productID id="4410"
  3725. />
  3726. <productGroupable type="1"
  3727. />
  3728. </product>
  3729. <product id="Momentum_INCP"
  3730. name="Momentum INC Pro"
  3731. series="Helmet"
  3732. latestVersion="1.0.4"
  3733. show = "1" >
  3734. <productMenu id="protocol"
  3735. type="0">
  3736. </productMenu>
  3737. <productMenu id="sip"
  3738. type="1" >
  3739. </productMenu>
  3740. <productMenu id="bluetoothIntercom"
  3741. type="1" >
  3742. </productMenu>
  3743. <productMenu id="intercomSetting"
  3744. type="1" >
  3745. </productMenu>
  3746. <productMenu id="phone"
  3747. type="2" >
  3748. </productMenu>
  3749. <productMenu id="fmradio"
  3750. type="3" >
  3751. </productMenu>
  3752. <productMenu id="deviceSetting"
  3753. type="1"
  3754. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3755. </productMenu>
  3756. <productMenu id="quickGuide"
  3757. type="1"
  3758. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  3759. size="794KB" >
  3760. </productMenu>
  3761. <productMenu id="userGuide"
  3762. type="1"
  3763. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  3764. size="1.53MB" >
  3765. </productMenu>
  3766. <productMenu id="connectGuide"
  3767. type="1"
  3768. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  3769. size="1.12MB" >
  3770. </productMenu>
  3771. <productID id="4430"
  3772. />
  3773. <productGroupable type="1"
  3774. />
  3775. </product>
  3776. <product id="Momentum_Lite"
  3777. name="Momentum Lite"
  3778. series="Helmet"
  3779. latestVersion="2.0.3"
  3780. show = "1" >
  3781. <productMenu id="protocol"
  3782. type="0">
  3783. </productMenu>
  3784. <productMenu id="sip"
  3785. type="1" >
  3786. </productMenu>
  3787. <productMenu id="bluetoothIntercom"
  3788. type="1" >
  3789. </productMenu>
  3790. <productMenu id="phone"
  3791. type="2" >
  3792. </productMenu>
  3793. <productMenu id="fmradio"
  3794. type="3" >
  3795. </productMenu>
  3796. <productMenu id="deviceSetting"
  3797. type="1"
  3798. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  3799. <productMenuURL version="1.1"
  3800. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  3801. />
  3802. </productMenu>
  3803. <productMenu id="quickGuide"
  3804. type="1"
  3805. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  3806. size="790KB" >
  3807. </productMenu>
  3808. <productMenu id="userGuide"
  3809. type="1"
  3810. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  3811. size="1.42MB" >
  3812. </productMenu>
  3813. <productMenu id="connectGuide"
  3814. type="1"
  3815. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  3816. size="1.12MB" >
  3817. </productMenu>
  3818. <productID id="5526"
  3819. />
  3820. <productGroupable type="0"
  3821. />
  3822. </product>
  3823. <product id="OUTRUSHM"
  3824. name="OUTRUSH M"
  3825. series="Helmet"
  3826. latestVersion="1.0"
  3827. show = "-1" >
  3828. <productMenu id="protocol"
  3829. type="2" >
  3830. </productMenu>
  3831. <productMenu id="alexa"
  3832. type="0" >
  3833. </productMenu>
  3834. <productMenu id="ota"
  3835. type="0" >
  3836. </productMenu>
  3837. <productMenu id="wa"
  3838. type="0" >
  3839. </productMenu>
  3840. <productMenu id="meshIntercom"
  3841. type="30" >
  3842. </productMenu>
  3843. <productMenu id="phone"
  3844. type="1" >
  3845. </productMenu>
  3846. <productMenu id="music"
  3847. type="1" >
  3848. </productMenu>
  3849. <productMenu id="fmradio"
  3850. type="1" >
  3851. </productMenu>
  3852. <productMenu id="deviceSetting"
  3853. type="1"
  3854. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  3855. </productMenu>
  3856. <productMenu id="quickGuide"
  3857. type="1"
  3858. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  3859. size="1.12MB" >
  3860. </productMenu>
  3861. <productMenu id="userGuide"
  3862. type="1"
  3863. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  3864. size="2.0MB" >
  3865. </productMenu>
  3866. <productMenu id="volume"
  3867. type="13" >
  3868. </productMenu>
  3869. <productMenu id="battery"
  3870. type="1" >
  3871. </productMenu>
  3872. <productID id="5600"
  3873. />
  3874. <productGroupable type="0"
  3875. />
  3876. </product>
  3877. <product id="ProRideEVO"
  3878. name="ProRide EVO"
  3879. series="Helmet"
  3880. latestVersion="1.1.2"
  3881. show = "1" >
  3882. <productMenu id="protocol"
  3883. type="0">
  3884. </productMenu>
  3885. <productMenu id="sip"
  3886. type="1" >
  3887. </productMenu>
  3888. <productMenu id="bluetoothIntercom"
  3889. type="1" >
  3890. </productMenu>
  3891. <productMenu id="phone"
  3892. type="2" >
  3893. </productMenu>
  3894. <productMenu id="fmradio"
  3895. type="3" >
  3896. </productMenu>
  3897. <productMenu id="deviceSetting"
  3898. type="1"
  3899. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  3900. </productMenu>
  3901. <productMenu id="userGuide"
  3902. type="1"
  3903. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  3904. size="778KB" >
  3905. </productMenu>
  3906. <productMenu id="connectGuide"
  3907. type="1"
  3908. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  3909. size="1.12MB" >
  3910. </productMenu>
  3911. <productID id="5426"
  3912. />
  3913. <productGroupable type="0"
  3914. />
  3915. </product>
  3916. <product id="OUTRUSHR"
  3917. name="OUTRUSH R"
  3918. series="Helmet"
  3919. latestVersion="2.1"
  3920. show = "1" >
  3921. <productMenu id="protocol"
  3922. type="3" >
  3923. </productMenu>
  3924. <productMenu id="sip"
  3925. type="1" >
  3926. </productMenu>
  3927. <productMenu id="bluetoothIntercom"
  3928. type="1" >
  3929. </productMenu>
  3930. <productMenu id="phone"
  3931. type="1" >
  3932. </productMenu>
  3933. <productMenu id="fmradio"
  3934. type="0" >
  3935. </productMenu>
  3936. <productMenu id="deviceSetting"
  3937. type="1"
  3938. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3939. </productMenu>
  3940. <productMenu id="userGuide"
  3941. type="1"
  3942. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  3943. size="1.14MB" >
  3944. </productMenu>
  3945. <productMenu id="connectGuide"
  3946. type="1"
  3947. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  3948. size="1.12MB" >
  3949. </productMenu>
  3950. <productID id="5440"
  3951. />
  3952. <productGroupable type="0"
  3953. />
  3954. </product>
  3955. <product id="OUTRUSHR"
  3956. name="OUTRUSH R"
  3957. series="Helmet"
  3958. latestVersion="1.1.3"
  3959. show = "-1" >
  3960. <productMenu id="protocol"
  3961. type="0">
  3962. </productMenu>
  3963. <productMenu id="sip"
  3964. type="1" >
  3965. </productMenu>
  3966. <productMenu id="bluetoothIntercom"
  3967. type="1" >
  3968. </productMenu>
  3969. <productMenu id="phone"
  3970. type="2" >
  3971. </productMenu>
  3972. <productMenu id="fmradio"
  3973. type="3" >
  3974. </productMenu>
  3975. <productMenu id="deviceSetting"
  3976. type="1"
  3977. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  3978. </productMenu>
  3979. <productMenu id="userGuide"
  3980. type="1"
  3981. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  3982. size="660KB" >
  3983. </productMenu>
  3984. <productMenu id="connectGuide"
  3985. type="1"
  3986. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  3987. size="1.12MB" >
  3988. </productMenu>
  3989. <productID id="5424"
  3990. />
  3991. <productGroupable type="0"
  3992. />
  3993. </product>
  3994. <product id="OUTSTARS"
  3995. name="OUTSTAR S"
  3996. series="Helmet"
  3997. latestVersion="2.0.1"
  3998. show = "-1" >
  3999. <productMenu id="protocol"
  4000. type="3" >
  4001. </productMenu>
  4002. <productMenu id="sip"
  4003. type="1" >
  4004. </productMenu>
  4005. <productMenu id="bluetoothIntercom"
  4006. type="1" >
  4007. </productMenu>
  4008. <productMenu id="phone"
  4009. type="1" >
  4010. </productMenu>
  4011. <productMenu id="fmradio"
  4012. type="0" >
  4013. </productMenu>
  4014. <productMenu id="deviceSetting"
  4015. type="1"
  4016. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  4017. </productMenu>
  4018. <productMenu id="userGuide"
  4019. type="0"
  4020. url=""
  4021. size="1.14MB" >
  4022. </productMenu>
  4023. <productID id="5443"
  4024. />
  4025. <productGroupable type="0"
  4026. />
  4027. </product>
  4028. <product id="OUTSTARS"
  4029. name="OUTSTAR S"
  4030. series="Helmet"
  4031. latestVersion="1.1.3"
  4032. show = "1" >
  4033. <productMenu id="protocol"
  4034. type="0">
  4035. </productMenu>
  4036. <productMenu id="sip"
  4037. type="1" >
  4038. </productMenu>
  4039. <productMenu id="bluetoothIntercom"
  4040. type="1" >
  4041. </productMenu>
  4042. <productMenu id="phone"
  4043. type="2" >
  4044. </productMenu>
  4045. <productMenu id="fmradio"
  4046. type="3" >
  4047. </productMenu>
  4048. <productMenu id="deviceSetting"
  4049. type="1"
  4050. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  4051. </productMenu>
  4052. <productMenu id="quickGuide"
  4053. type="1"
  4054. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  4055. size="643KB" >
  4056. </productMenu>
  4057. <productMenu id="userGuide"
  4058. type="1"
  4059. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  4060. size="1.15MB" >
  4061. </productMenu>
  4062. <productMenu id="connectGuide"
  4063. type="1"
  4064. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  4065. size="1.12MB" >
  4066. </productMenu>
  4067. <productID id="5428"
  4068. />
  4069. <productGroupable type="0"
  4070. />
  4071. </product>
  4072. <product id="OUTRIDE"
  4073. name="OUTRIDE"
  4074. series="Helmet"
  4075. latestVersion="1.0.1"
  4076. show = "1" >
  4077. <productMenu id="protocol"
  4078. type="0">
  4079. </productMenu>
  4080. <productMenu id="sip"
  4081. type="1" >
  4082. </productMenu>
  4083. <productMenu id="bluetoothIntercom"
  4084. type="1" >
  4085. </productMenu>
  4086. <productMenu id="phone"
  4087. type="2" >
  4088. </productMenu>
  4089. <productMenu id="fmradio"
  4090. type="3" >
  4091. </productMenu>
  4092. <productMenu id="deviceSetting"
  4093. type="1"
  4094. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  4095. </productMenu>
  4096. <productMenu id="quickGuide"
  4097. type="1"
  4098. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  4099. size="643KB" >
  4100. </productMenu>
  4101. <productMenu id="userGuide"
  4102. type="1"
  4103. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  4104. size="660KB" >
  4105. </productMenu>
  4106. <productMenu id="connectGuide"
  4107. type="1"
  4108. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  4109. size="1.12MB" >
  4110. </productMenu>
  4111. <productID id="5432"
  4112. />
  4113. <productGroupable type="0"
  4114. />
  4115. </product>
  4116. <product id="OUTFORCE"
  4117. name="OUTFORCE"
  4118. series="Helmet"
  4119. latestVersion="1.0.1"
  4120. show = "1" >
  4121. <productMenu id="protocol"
  4122. type="0">
  4123. </productMenu>
  4124. <productMenu id="sip"
  4125. type="1" >
  4126. </productMenu>
  4127. <productMenu id="bluetoothIntercom"
  4128. type="1" >
  4129. </productMenu>
  4130. <productMenu id="phone"
  4131. type="2" >
  4132. </productMenu>
  4133. <productMenu id="fmradio"
  4134. type="3" >
  4135. </productMenu>
  4136. <productMenu id="deviceSetting"
  4137. type="1"
  4138. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  4139. </productMenu>
  4140. <productMenu id="quickGuide"
  4141. type="1"
  4142. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  4143. size="643KB" >
  4144. </productMenu>
  4145. <productMenu id="userGuide"
  4146. type="1"
  4147. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  4148. size="660KB" >
  4149. </productMenu>
  4150. <productMenu id="connectGuide"
  4151. type="1"
  4152. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  4153. size="1.12MB" >
  4154. </productMenu>
  4155. <productID id="5430"
  4156. />
  4157. <productGroupable type="0"
  4158. />
  4159. </product>
  4160. <product id="Rumba"
  4161. name="Rumba"
  4162. series="30"
  4163. latestVersion="2.0"
  4164. show = "-1" >
  4165. <productMenu id="protocol"
  4166. type="3" >
  4167. </productMenu>
  4168. <productMenu id="sip"
  4169. type="1" >
  4170. </productMenu>
  4171. <productMenu id="bluetoothIntercom"
  4172. type="1" >
  4173. </productMenu>
  4174. <productMenu id="deviceSetting"
  4175. type="1"
  4176. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  4177. </productMenu>
  4178. <productMenu id="quickGuide"
  4179. type="1"
  4180. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  4181. size="344KB" >
  4182. </productMenu>
  4183. <productMenu id="userGuide"
  4184. type="1"
  4185. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  4186. size="1.14MB" >
  4187. </productMenu>
  4188. <productID id="6322"
  4189. />
  4190. <productGroupable type="0"
  4191. />
  4192. </product>
  4193. <product id="Savage"
  4194. name="Savage"
  4195. series="Helmet"
  4196. latestVersion="1.2.2"
  4197. show = "1" >
  4198. <productMenu id="protocol"
  4199. type="0">
  4200. </productMenu>
  4201. <productMenu id="sip"
  4202. type="1" >
  4203. </productMenu>
  4204. <productMenu id="bluetoothIntercom"
  4205. type="1" >
  4206. </productMenu>
  4207. <productMenu id="phone"
  4208. type="2" >
  4209. </productMenu>
  4210. <productMenu id="fmradio"
  4211. type="3" >
  4212. </productMenu>
  4213. <productMenu id="deviceSetting"
  4214. type="1"
  4215. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  4216. <productMenuURL version="1.9"
  4217. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  4218. />
  4219. <productMenuURL version="1.1"
  4220. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  4221. />
  4222. </productMenu>
  4223. <productMenu id="quickGuide"
  4224. type="1"
  4225. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  4226. size="796KB" >
  4227. </productMenu>
  4228. <productMenu id="userGuide"
  4229. type="1"
  4230. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  4231. size="910KB" >
  4232. </productMenu>
  4233. <productMenu id="connectGuide"
  4234. type="1"
  4235. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  4236. size="1.12MB" >
  4237. </productMenu>
  4238. <productID id="5550"
  4239. />
  4240. <productGroupable type="0"
  4241. />
  4242. </product>
  4243. <product id="SPECTOR"
  4244. name="SPECTOR"
  4245. series="Helmet"
  4246. latestVersion="1.0"
  4247. latestVersionVoicePrompt="1.1"
  4248. show = "-1" >
  4249. <productMenu id="protocol"
  4250. type="2" >
  4251. </productMenu>
  4252. <productMenu id="ota"
  4253. type="2" >
  4254. <otaLanguages>
  4255. <otaLanguage
  4256. id="0"
  4257. name="English"
  4258. package="0"
  4259. />
  4260. <otaLanguage
  4261. id="0"
  4262. name="French"
  4263. package="1"
  4264. />
  4265. <otaLanguage
  4266. id="0"
  4267. name="Spanish"
  4268. package="2"
  4269. />
  4270. <otaLanguage
  4271. id="0"
  4272. name="Italian"
  4273. package="3"
  4274. />
  4275. <otaLanguage
  4276. id="0"
  4277. name="German"
  4278. package="4"
  4279. />
  4280. <otaLanguage
  4281. id="0"
  4282. name="Dutch"
  4283. package="5"
  4284. />
  4285. <otaLanguage
  4286. id="0"
  4287. name="Russian"
  4288. package="6"
  4289. />
  4290. <otaLanguage
  4291. id="0"
  4292. name="Chinese"
  4293. package="7"
  4294. />
  4295. <otaLanguage
  4296. id="0"
  4297. name="Korean"
  4298. package="8"
  4299. />
  4300. <otaLanguage
  4301. id="0"
  4302. name="Japanese"
  4303. package="9"
  4304. />
  4305. <otaLanguage
  4306. id="0"
  4307. name="Finnish"
  4308. package="10"
  4309. />
  4310. <otaLanguage
  4311. id="0"
  4312. name="Polish"
  4313. package="11"
  4314. />
  4315. </otaLanguages>
  4316. <otaPackages>
  4317. <package
  4318. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2.img"
  4319. size="5183988"
  4320. />
  4321. <package
  4322. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-fr-FR.img"
  4323. size="5183988"
  4324. />
  4325. <package
  4326. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-es-ES.img"
  4327. size="5183988"
  4328. />
  4329. <package
  4330. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-it-IT.img"
  4331. size="5183988"
  4332. />
  4333. <package
  4334. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-de-DE.img"
  4335. size="5183988"
  4336. />
  4337. <package
  4338. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-nl-NL.img"
  4339. size="5183988"
  4340. />
  4341. <package
  4342. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ru-RU.img"
  4343. size="5183988"
  4344. />
  4345. <package
  4346. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-cmn-CN.img"
  4347. size="5183988"
  4348. />
  4349. <package
  4350. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ko-KR.img"
  4351. size="5183988"
  4352. />
  4353. <package
  4354. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ja-JP.img"
  4355. size="5183988"
  4356. />
  4357. <package
  4358. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-fi-FI.img"
  4359. size="5183988"
  4360. />
  4361. <package
  4362. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-pl-PL.img"
  4363. size="5183988"
  4364. />
  4365. </otaPackages>
  4366. </productMenu>
  4367. <productMenu id="wa"
  4368. type="0" >
  4369. </productMenu>
  4370. <productMenu id="led"
  4371. type="5" >
  4372. </productMenu>
  4373. <productMenu id="led+"
  4374. type="2"
  4375. url="1" >
  4376. </productMenu>
  4377. <productMenu id="meshIntercom+"
  4378. type="3"
  4379. url="2" >
  4380. </productMenu>
  4381. <productMenu id="waveIntercom"
  4382. type="1" >
  4383. </productMenu>
  4384. <productMenu id="fmradio"
  4385. type="0" >
  4386. </productMenu>
  4387. <productMenu id="phone"
  4388. type="1" >
  4389. </productMenu>
  4390. <productMenu id="music"
  4391. type="1" >
  4392. </productMenu>
  4393. <productMenu id="musicSharing"
  4394. type="0" >
  4395. </productMenu>
  4396. <productMenu id="deviceSetting"
  4397. type="1"
  4398. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  4399. </productMenu>
  4400. <productMenu id="quickGuide"
  4401. type="0"
  4402. url=""
  4403. size="1.12MB" >
  4404. </productMenu>
  4405. <productMenu id="userGuide"
  4406. type="0"
  4407. url=""
  4408. size="2.0MB" >
  4409. </productMenu>
  4410. <productMenu id="videoGuide"
  4411. type="0"
  4412. url=""
  4413. size="3.41MB" >
  4414. </productMenu>
  4415. <productMenu id="volume"
  4416. type="16" >
  4417. </productMenu>
  4418. <productMenu id="battery"
  4419. type="1" >
  4420. </productMenu>
  4421. <productID id="6A0A"
  4422. />
  4423. <productGroupable type="0"
  4424. />
  4425. </product>
  4426. <product id="OUTLANDER"
  4427. name="OUTLANDER"
  4428. series="Helmet"
  4429. latestVersion="1.0.1"
  4430. latestVersionVoicePrompt="1.0"
  4431. show = "-1" >
  4432. <productMenu id="protocol"
  4433. type="2" >
  4434. </productMenu>
  4435. <productMenu id="ota"
  4436. type="2" >
  4437. <otaLanguages>
  4438. <otaLanguage
  4439. id="0"
  4440. name="English"
  4441. package="0"
  4442. />
  4443. <otaLanguage
  4444. id="0"
  4445. name="French"
  4446. package="1"
  4447. />
  4448. <otaLanguage
  4449. id="0"
  4450. name="Spanish"
  4451. package="2"
  4452. />
  4453. <otaLanguage
  4454. id="0"
  4455. name="Italian"
  4456. package="3"
  4457. />
  4458. <otaLanguage
  4459. id="0"
  4460. name="German"
  4461. package="4"
  4462. />
  4463. <otaLanguage
  4464. id="0"
  4465. name="Dutch"
  4466. package="5"
  4467. />
  4468. <otaLanguage
  4469. id="0"
  4470. name="Russian"
  4471. package="6"
  4472. />
  4473. <otaLanguage
  4474. id="0"
  4475. name="Chinese"
  4476. package="7"
  4477. />
  4478. <otaLanguage
  4479. id="0"
  4480. name="Korean"
  4481. package="8"
  4482. />
  4483. <otaLanguage
  4484. id="0"
  4485. name="Japanese"
  4486. package="9"
  4487. />
  4488. <otaLanguage
  4489. id="0"
  4490. name="Finnish"
  4491. package="10"
  4492. />
  4493. <otaLanguage
  4494. id="0"
  4495. name="Polish"
  4496. package="11"
  4497. />
  4498. </otaLanguages>
  4499. <otaPackages>
  4500. <package
  4501. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0.img"
  4502. size="5183988"
  4503. />
  4504. <package
  4505. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-fr-FR.img"
  4506. size="5183988"
  4507. />
  4508. <package
  4509. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-es-ES.img"
  4510. size="5183988"
  4511. />
  4512. <package
  4513. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-it-IT.img"
  4514. size="5183988"
  4515. />
  4516. <package
  4517. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-de-DE.img"
  4518. size="5183988"
  4519. />
  4520. <package
  4521. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-nl-NL.img"
  4522. size="5183988"
  4523. />
  4524. <package
  4525. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-ru-RU.img"
  4526. size="5183988"
  4527. />
  4528. <package
  4529. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-cmn-CN.img"
  4530. size="5183988"
  4531. />
  4532. <package
  4533. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-ko-KR.img"
  4534. size="5183988"
  4535. />
  4536. <package
  4537. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-ja-JP.img"
  4538. size="5183988"
  4539. />
  4540. <package
  4541. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-fi-FI.img"
  4542. size="5183988"
  4543. />
  4544. <package
  4545. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-pl-PL.img"
  4546. size="5183988"
  4547. />
  4548. </otaPackages>
  4549. </productMenu>
  4550. <productMenu id="wa"
  4551. type="0" >
  4552. </productMenu>
  4553. <productMenu id="led"
  4554. type="5" >
  4555. </productMenu>
  4556. <productMenu id="led+"
  4557. type="2"
  4558. url="1" >
  4559. </productMenu>
  4560. <productMenu id="meshIntercom+"
  4561. type="3"
  4562. url="2" >
  4563. </productMenu>
  4564. <productMenu id="waveIntercom"
  4565. type="1" >
  4566. </productMenu>
  4567. <productMenu id="fmradio"
  4568. type="0" >
  4569. </productMenu>
  4570. <productMenu id="phone"
  4571. type="1" >
  4572. </productMenu>
  4573. <productMenu id="music"
  4574. type="1" >
  4575. </productMenu>
  4576. <productMenu id="musicSharing"
  4577. type="0" >
  4578. </productMenu>
  4579. <productMenu id="deviceSetting"
  4580. type="1"
  4581. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4582. </productMenu>
  4583. <productMenu id="quickGuide"
  4584. type="0"
  4585. url=""
  4586. size="1.12MB" >
  4587. </productMenu>
  4588. <productMenu id="userGuide"
  4589. type="0"
  4590. url=""
  4591. size="2.0MB" >
  4592. </productMenu>
  4593. <productMenu id="videoGuide"
  4594. type="0"
  4595. url=""
  4596. size="3.41MB" >
  4597. </productMenu>
  4598. <productMenu id="volume"
  4599. type="16" >
  4600. </productMenu>
  4601. <productMenu id="battery"
  4602. type="1" >
  4603. </productMenu>
  4604. <productID id="6A05"
  4605. />
  4606. <productGroupable type="0"
  4607. />
  4608. </product>
  4609. <product id="OUTRUSH2"
  4610. name="OUTRUSH 2"
  4611. series="Helmet"
  4612. latestVersion="1.0.2"
  4613. latestVersionVoicePrompt="1.1"
  4614. show = "-1" >
  4615. <productMenu id="protocol"
  4616. type="2" >
  4617. </productMenu>
  4618. <productMenu id="alexa"
  4619. type="0" >
  4620. </productMenu>
  4621. <productMenu id="ota"
  4622. type="2" >
  4623. <otaPackages>
  4624. <package
  4625. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  4626. size="2945812"
  4627. />
  4628. </otaPackages>
  4629. </productMenu>
  4630. <productMenu id="meshIntercom+"
  4631. type="3"
  4632. url="2" >
  4633. </productMenu>
  4634. <productMenu id="waveIntercom"
  4635. type="1" >
  4636. </productMenu>
  4637. <productMenu id="phone"
  4638. type="1" >
  4639. </productMenu>
  4640. <productMenu id="music"
  4641. type="1" >
  4642. </productMenu>
  4643. <productMenu id="musicSharing"
  4644. type="0" >
  4645. </productMenu>
  4646. <productMenu id="deviceSetting"
  4647. type="1"
  4648. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  4649. <productMenuURL version="1.0"
  4650. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  4651. />
  4652. </productMenu>
  4653. <productMenu id="quickGuide"
  4654. type="0"
  4655. url=""
  4656. size="1.12MB" >
  4657. </productMenu>
  4658. <productMenu id="userGuide"
  4659. type="1"
  4660. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.0_en_250730.pdf"
  4661. size="2.0MB" >
  4662. </productMenu>
  4663. <productMenu id="volume"
  4664. type="12" >
  4665. </productMenu>
  4666. <productMenu id="battery"
  4667. type="1" >
  4668. </productMenu>
  4669. <productID id="684A"
  4670. />
  4671. <productGroupable type="0"
  4672. />
  4673. </product>
  4674. <product id="OUTSTAR2"
  4675. name="OUTSTAR 2"
  4676. series="Helmet"
  4677. latestVersion="1.0.1"
  4678. latestVersionVoicePrompt="1.1"
  4679. show = "-1" >
  4680. <productMenu id="protocol"
  4681. type="2" >
  4682. </productMenu>
  4683. <productMenu id="alexa"
  4684. type="0" >
  4685. </productMenu>
  4686. <productMenu id="ota"
  4687. type="2" >
  4688. <otaPackages>
  4689. <package
  4690. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  4691. size="2945812"
  4692. />
  4693. </otaPackages>
  4694. </productMenu>
  4695. <productMenu id="meshIntercom+"
  4696. type="3"
  4697. url="2" >
  4698. </productMenu>
  4699. <productMenu id="waveIntercom"
  4700. type="1" >
  4701. </productMenu>
  4702. <productMenu id="phone"
  4703. type="1" >
  4704. </productMenu>
  4705. <productMenu id="music"
  4706. type="1" >
  4707. </productMenu>
  4708. <productMenu id="musicSharing"
  4709. type="0" >
  4710. </productMenu>
  4711. <productMenu id="deviceSetting"
  4712. type="1"
  4713. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  4714. </productMenu>
  4715. <productMenu id="quickGuide"
  4716. type="0"
  4717. url=""
  4718. size="1.12MB" >
  4719. </productMenu>
  4720. <productMenu id="userGuide"
  4721. type="1"
  4722. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.0_en_250903.pdf"
  4723. size="2.0MB" >
  4724. </productMenu>
  4725. <productMenu id="volume"
  4726. type="12" >
  4727. </productMenu>
  4728. <productMenu id="battery"
  4729. type="1" >
  4730. </productMenu>
  4731. <productID id="684B"
  4732. />
  4733. <productGroupable type="0"
  4734. />
  4735. </product>
  4736. <product id="SURGE"
  4737. name="SURGE"
  4738. series="Helmet"
  4739. latestVersion="1.1.1"
  4740. latestVersionVoicePrompt="0.9"
  4741. show = "1" >
  4742. <productMenu id="protocol"
  4743. type="2" >
  4744. </productMenu>
  4745. <productMenu id="alexa"
  4746. type="0" >
  4747. </productMenu>
  4748. <productMenu id="ota"
  4749. type="2" >
  4750. <otaPackages>
  4751. <package
  4752. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.1.1-build0.img"
  4753. size="2945812"
  4754. />
  4755. </otaPackages>
  4756. </productMenu>
  4757. <productMenu id="meshIntercom"
  4758. type="30" >
  4759. </productMenu>
  4760. <productMenu id="meshIntercom+"
  4761. type="3"
  4762. url="2" >
  4763. <productMenuType version="1.0.1"
  4764. type="2"
  4765. />
  4766. </productMenu>
  4767. <productMenu id="waveIntercom"
  4768. type="1" >
  4769. <productMenuType version="1.0.9"
  4770. type="0"
  4771. />
  4772. </productMenu>
  4773. <productMenu id="phone"
  4774. type="1" >
  4775. </productMenu>
  4776. <productMenu id="music"
  4777. type="1" >
  4778. </productMenu>
  4779. <productMenu id="musicSharing"
  4780. type="0" >
  4781. </productMenu>
  4782. <productMenu id="deviceSetting"
  4783. type="1"
  4784. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml" >
  4785. <productMenuURL version="1.0.1"
  4786. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  4787. />
  4788. </productMenu>
  4789. <productMenu id="quickGuide"
  4790. type="0"
  4791. url=""
  4792. size="1.12MB" >
  4793. </productMenu>
  4794. <productMenu id="userGuide"
  4795. type="1"
  4796. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.0_en_250408.pdf"
  4797. size="2.0MB" >
  4798. </productMenu>
  4799. <productMenu id="volume"
  4800. type="12" >
  4801. </productMenu>
  4802. <productMenu id="battery"
  4803. type="1" >
  4804. </productMenu>
  4805. <productID id="6840"
  4806. />
  4807. <productGroupable type="0"
  4808. />
  4809. </product>
  4810. <product id="Cavalry2"
  4811. name="Cavalry 2"
  4812. series="Helmet"
  4813. latestVersion="1.1.1"
  4814. latestVersionVoicePrompt="0.9"
  4815. show = "1" >
  4816. <productMenu id="protocol"
  4817. type="2" >
  4818. </productMenu>
  4819. <productMenu id="alexa"
  4820. type="0" >
  4821. </productMenu>
  4822. <productMenu id="ota"
  4823. type="2" >
  4824. <otaPackages>
  4825. <package
  4826. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.1.1-build0.img"
  4827. size="3144148"
  4828. />
  4829. </otaPackages>
  4830. </productMenu>
  4831. <productMenu id="wa"
  4832. type="0" >
  4833. </productMenu>
  4834. <productMenu id="meshIntercom"
  4835. type="30" >
  4836. </productMenu>
  4837. <productMenu id="meshIntercom+"
  4838. type="3"
  4839. url="2" >
  4840. <productMenuType version="1.0"
  4841. type="2"
  4842. />
  4843. </productMenu>
  4844. <productMenu id="waveIntercom"
  4845. type="1" >
  4846. <productMenuType version="1.0.9"
  4847. type="0"
  4848. />
  4849. </productMenu>
  4850. <productMenu id="phone"
  4851. type="1" >
  4852. </productMenu>
  4853. <productMenu id="music"
  4854. type="1" >
  4855. </productMenu>
  4856. <productMenu id="musicSharing"
  4857. type="0" >
  4858. </productMenu>
  4859. <productMenu id="deviceSetting"
  4860. type="1"
  4861. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_02.xml" >
  4862. <productMenuURL version="1.0"
  4863. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_01.xml"
  4864. />
  4865. </productMenu>
  4866. <productMenu id="quickGuide"
  4867. type="0"
  4868. url=""
  4869. size="1.12MB" >
  4870. </productMenu>
  4871. <productMenu id="userGuide"
  4872. type="1"
  4873. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.0_en_250415.pdf"
  4874. size="2.0MB" >
  4875. </productMenu>
  4876. <productMenu id="connectGuide"
  4877. type="1"
  4878. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  4879. size="1.12MB" >
  4880. </productMenu>
  4881. <productMenu id="volume"
  4882. type="12" >
  4883. </productMenu>
  4884. <productMenu id="battery"
  4885. type="1" >
  4886. </productMenu>
  4887. <productID id="6839"
  4888. />
  4889. <productGroupable type="0"
  4890. />
  4891. </product>
  4892. <product id="Cavalry"
  4893. name="Cavalry"
  4894. series="Helmet"
  4895. latestVersion="1.2.2"
  4896. show = "1" >
  4897. <productMenu id="protocol"
  4898. type="0">
  4899. </productMenu>
  4900. <productMenu id="sip"
  4901. type="1" >
  4902. </productMenu>
  4903. <productMenu id="bluetoothIntercom"
  4904. type="1" >
  4905. </productMenu>
  4906. <productMenu id="phone"
  4907. type="2" >
  4908. </productMenu>
  4909. <productMenu id="fmradio"
  4910. type="3" >
  4911. </productMenu>
  4912. <productMenu id="deviceSetting"
  4913. type="1"
  4914. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  4915. <productMenuURL version="1.9"
  4916. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  4917. />
  4918. <productMenuURL version="1.0.1"
  4919. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  4920. />
  4921. </productMenu>
  4922. <productMenu id="quickGuide"
  4923. type="1"
  4924. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  4925. size="795KB" >
  4926. </productMenu>
  4927. <productMenu id="userGuide"
  4928. type="1"
  4929. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  4930. size="1.87MB" >
  4931. </productMenu>
  4932. <productMenu id="connectGuide"
  4933. type="1"
  4934. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  4935. size="1.12MB" >
  4936. </productMenu>
  4937. <productID id="5524"
  4938. />
  4939. <productGroupable type="0"
  4940. />
  4941. </product>
  4942. <product id="Cavalry_Lite"
  4943. name="Cavalry Lite"
  4944. series="Helmet"
  4945. latestVersion="1.0.2"
  4946. show = "1" >
  4947. <productMenu id="protocol"
  4948. type="0">
  4949. </productMenu>
  4950. <productMenu id="sip"
  4951. type="1" >
  4952. </productMenu>
  4953. <productMenu id="bluetoothIntercom"
  4954. type="1" >
  4955. </productMenu>
  4956. <productMenu id="phone"
  4957. type="2" >
  4958. </productMenu>
  4959. <productMenu id="fmradio"
  4960. type="3" >
  4961. </productMenu>
  4962. <productMenu id="deviceSetting"
  4963. type="1"
  4964. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  4965. </productMenu>
  4966. <productMenu id="userGuide"
  4967. type="1"
  4968. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  4969. size="1.74MB" >
  4970. </productMenu>
  4971. <productMenu id="connectGuide"
  4972. type="1"
  4973. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  4974. size="1.12MB" >
  4975. </productMenu>
  4976. <productID id="5536"
  4977. />
  4978. <productGroupable type="0"
  4979. />
  4980. </product>
  4981. <product id="SF4"
  4982. name="SF4"
  4983. series="SF"
  4984. latestVersion="1.1.5"
  4985. show = "-1" >
  4986. <productMenu id="protocol"
  4987. type="1"
  4988. url="3">
  4989. </productMenu>
  4990. <productMenu id="sip"
  4991. type="1" >
  4992. </productMenu>
  4993. <productMenu id="bluetoothIntercom"
  4994. type="1" >
  4995. </productMenu>
  4996. <productMenu id="phone"
  4997. type="1" >
  4998. </productMenu>
  4999. <productMenu id="music"
  5000. type="1" >
  5001. </productMenu>
  5002. <productMenu id="fmradio"
  5003. type="1" >
  5004. </productMenu>
  5005. <productMenu id="deviceSetting"
  5006. type="1"
  5007. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  5008. <productMenuURL version="1.0.1"
  5009. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  5010. />
  5011. </productMenu>
  5012. <productMenu id="quickGuide"
  5013. type="1"
  5014. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  5015. size="607KB" >
  5016. </productMenu>
  5017. <productMenu id="userGuide"
  5018. type="1"
  5019. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  5020. size="1.91MB" >
  5021. </productMenu>
  5022. <productMenu id="volume"
  5023. type="4" >
  5024. </productMenu>
  5025. <productID id="5414"
  5026. />
  5027. <productGroupable type="0"
  5028. />
  5029. </product>
  5030. <product id="SF4"
  5031. name="SF4"
  5032. series="SF"
  5033. latestVersion="3.4.2"
  5034. show = "1" >
  5035. <productMenu id="protocol"
  5036. type="2" >
  5037. </productMenu>
  5038. <productMenu id="sip"
  5039. type="1" >
  5040. </productMenu>
  5041. <productMenu id="bluetoothIntercom"
  5042. type="1" >
  5043. </productMenu>
  5044. <productMenu id="phone"
  5045. type="1" >
  5046. </productMenu>
  5047. <productMenu id="music"
  5048. type="1" >
  5049. </productMenu>
  5050. <productMenu id="fmradio"
  5051. type="1" >
  5052. </productMenu>
  5053. <productMenu id="deviceSetting"
  5054. type="1"
  5055. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  5056. <productMenuURL version="3.0"
  5057. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  5058. />
  5059. </productMenu>
  5060. <productMenu id="quickGuide"
  5061. type="0"
  5062. url=""
  5063. size="934KB" >
  5064. </productMenu>
  5065. <productMenu id="userGuide"
  5066. type="1"
  5067. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  5068. size="1.14MB" >
  5069. </productMenu>
  5070. <productMenu id="connectGuide"
  5071. type="1"
  5072. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5073. size="1.12MB" >
  5074. </productMenu>
  5075. <productMenu id="volume"
  5076. type="15" >
  5077. </productMenu>
  5078. <productID id="3370"
  5079. />
  5080. <productGroupable type="0"
  5081. />
  5082. </product>
  5083. <product id="SF2"
  5084. name="SF2"
  5085. series="SF"
  5086. latestVersion="1.2.1"
  5087. show = "-1" >
  5088. <productMenu id="protocol"
  5089. type="1"
  5090. url="2">
  5091. </productMenu>
  5092. <productMenu id="sip"
  5093. type="1" >
  5094. </productMenu>
  5095. <productMenu id="bluetoothIntercom"
  5096. type="1" >
  5097. </productMenu>
  5098. <productMenu id="phone"
  5099. type="1" >
  5100. </productMenu>
  5101. <productMenu id="music"
  5102. type="1" >
  5103. </productMenu>
  5104. <productMenu id="fmradio"
  5105. type="1" >
  5106. </productMenu>
  5107. <productMenu id="deviceSetting"
  5108. type="1"
  5109. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  5110. <productMenuURL version="1.0.1"
  5111. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  5112. />
  5113. </productMenu>
  5114. <productMenu id="quickGuide"
  5115. type="1"
  5116. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  5117. size="607KB" >
  5118. </productMenu>
  5119. <productMenu id="userGuide"
  5120. type="1"
  5121. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  5122. size="1.91MB" >
  5123. </productMenu>
  5124. <productMenu id="volume"
  5125. type="4" >
  5126. </productMenu>
  5127. <productID id="5412"
  5128. />
  5129. <productGroupable type="0"
  5130. />
  5131. </product>
  5132. <product id="SF2"
  5133. name="SF2"
  5134. series="SF"
  5135. latestVersion="3.3.2"
  5136. show = "1" >
  5137. <productMenu id="protocol"
  5138. type="2" >
  5139. </productMenu>
  5140. <productMenu id="sip"
  5141. type="1" >
  5142. </productMenu>
  5143. <productMenu id="bluetoothIntercom"
  5144. type="1" >
  5145. </productMenu>
  5146. <productMenu id="phone"
  5147. type="1" >
  5148. </productMenu>
  5149. <productMenu id="music"
  5150. type="1" >
  5151. </productMenu>
  5152. <productMenu id="fmradio"
  5153. type="0" >
  5154. </productMenu>
  5155. <productMenu id="deviceSetting"
  5156. type="1"
  5157. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  5158. <productMenuURL version="3.0"
  5159. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  5160. />
  5161. </productMenu>
  5162. <productMenu id="quickGuide"
  5163. type="0"
  5164. url=""
  5165. size="934KB" >
  5166. </productMenu>
  5167. <productMenu id="userGuide"
  5168. type="1"
  5169. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  5170. size="1.14MB" >
  5171. </productMenu>
  5172. <productMenu id="connectGuide"
  5173. type="1"
  5174. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5175. size="1.12MB" >
  5176. </productMenu>
  5177. <productMenu id="volume"
  5178. type="15" >
  5179. </productMenu>
  5180. <productID id="3360"
  5181. />
  5182. <productGroupable type="0"
  5183. />
  5184. </product>
  5185. <product id="SF1"
  5186. name="SF1"
  5187. series="SF"
  5188. latestVersion="2.0.5"
  5189. show = "-1" >
  5190. <productMenu id="protocol"
  5191. type="1"
  5192. url="1">
  5193. </productMenu>
  5194. <productMenu id="sip"
  5195. type="1" >
  5196. </productMenu>
  5197. <productMenu id="bluetoothIntercom"
  5198. type="1" >
  5199. <productMenuType version="1.1"
  5200. type="0"
  5201. />
  5202. </productMenu>
  5203. <productMenu id="phone"
  5204. type="1" >
  5205. </productMenu>
  5206. <productMenu id="music"
  5207. type="1" >
  5208. </productMenu>
  5209. <productMenu id="deviceSetting"
  5210. type="1"
  5211. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  5212. <productMenuURL version="1.1"
  5213. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  5214. />
  5215. <productMenuURL version="1.0"
  5216. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  5217. />
  5218. </productMenu>
  5219. <productMenu id="quickGuide"
  5220. type="1"
  5221. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  5222. size="401KB" >
  5223. </productMenu>
  5224. <productMenu id="userGuide"
  5225. type="1"
  5226. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  5227. size="1.91MB" >
  5228. </productMenu>
  5229. <productMenu id="volume"
  5230. type="3" >
  5231. </productMenu>
  5232. <productID id="5410"
  5233. />
  5234. <productGroupable type="0"
  5235. />
  5236. </product>
  5237. <product id="SF1"
  5238. name="SF1"
  5239. series="SF"
  5240. latestVersion="3.3.2"
  5241. show = "1" >
  5242. <productMenu id="protocol"
  5243. type="2" >
  5244. </productMenu>
  5245. <productMenu id="sip"
  5246. type="1" >
  5247. </productMenu>
  5248. <productMenu id="bluetoothIntercom"
  5249. type="1" >
  5250. </productMenu>
  5251. <productMenu id="phone"
  5252. type="1" >
  5253. </productMenu>
  5254. <productMenu id="music"
  5255. type="1" >
  5256. </productMenu>
  5257. <productMenu id="fmradio"
  5258. type="0" >
  5259. </productMenu>
  5260. <productMenu id="deviceSetting"
  5261. type="1"
  5262. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  5263. <productMenuURL version="3.0"
  5264. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  5265. />
  5266. </productMenu>
  5267. <productMenu id="quickGuide"
  5268. type="0"
  5269. url=""
  5270. size="934KB" >
  5271. </productMenu>
  5272. <productMenu id="userGuide"
  5273. type="1"
  5274. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  5275. size="1.14MB" >
  5276. </productMenu>
  5277. <productMenu id="connectGuide"
  5278. type="1"
  5279. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5280. size="1.12MB" >
  5281. </productMenu>
  5282. <productMenu id="volume"
  5283. type="15" >
  5284. </productMenu>
  5285. <productID id="3350"
  5286. />
  5287. <productGroupable type="0"
  5288. />
  5289. </product>
  5290. <product id="SFR"
  5291. name="SFR"
  5292. series="SF"
  5293. latestVersion="1.1.1"
  5294. show = "1" >
  5295. <productMenu id="protocol"
  5296. type="1"
  5297. url="3">
  5298. </productMenu>
  5299. <productMenu id="sip"
  5300. type="1" >
  5301. </productMenu>
  5302. <productMenu id="bluetoothIntercom"
  5303. type="1" >
  5304. </productMenu>
  5305. <productMenu id="phone"
  5306. type="1" >
  5307. </productMenu>
  5308. <productMenu id="music"
  5309. type="1" >
  5310. </productMenu>
  5311. <productMenu id="fmradio"
  5312. type="1" >
  5313. </productMenu>
  5314. <productMenu id="deviceSetting"
  5315. type="1"
  5316. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  5317. </productMenu>
  5318. <productMenu id="quickGuide"
  5319. type="1"
  5320. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  5321. size="607KB" >
  5322. </productMenu>
  5323. <productMenu id="userGuide"
  5324. type="1"
  5325. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  5326. size="1.91MB" >
  5327. </productMenu>
  5328. <productMenu id="volume"
  5329. type="4" >
  5330. </productMenu>
  5331. <productID id="5418"
  5332. />
  5333. <productGroupable type="0"
  5334. />
  5335. </product>
  5336. <product id="20S"
  5337. name="20S"
  5338. series="20"
  5339. latestVersion="2.2.3"
  5340. show = "1" >
  5341. <productMenu id="protocol"
  5342. type="0">
  5343. </productMenu>
  5344. <productMenu id="wa"
  5345. type="5" >
  5346. </productMenu>
  5347. <productMenu id="sip"
  5348. type="1" >
  5349. <productMenuType version="1.0"
  5350. type="0"
  5351. />
  5352. </productMenu>
  5353. <productMenu id="bluetoothIntercom"
  5354. type="1" >
  5355. <productMenuType version="1.0"
  5356. type="0"
  5357. />
  5358. </productMenu>
  5359. <productMenu id="intercomSetting"
  5360. type="1" >
  5361. </productMenu>
  5362. <productMenu id="phone"
  5363. type="2" >
  5364. </productMenu>
  5365. <productMenu id="fmradio"
  5366. type="3" >
  5367. </productMenu>
  5368. <productMenu id="deviceSetting"
  5369. type="1"
  5370. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  5371. <productMenuURL version="2.0.2"
  5372. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5373. />
  5374. <productMenuURL version="1.5"
  5375. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5376. />
  5377. <productMenuURL version="1.4.1"
  5378. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5379. />
  5380. <productMenuURL version="1.1"
  5381. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5382. />
  5383. <productMenuURL version="1.0"
  5384. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5385. />
  5386. </productMenu>
  5387. <productMenu id="quickGuide"
  5388. type="0"
  5389. url=""
  5390. size="264KB" >
  5391. </productMenu>
  5392. <productMenu id="userGuide"
  5393. type="1"
  5394. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  5395. size="3.09MB" >
  5396. </productMenu>
  5397. <productMenu id="connectGuide"
  5398. type="1"
  5399. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  5400. size="1.12MB" >
  5401. </productMenu>
  5402. <productID id="4210"
  5403. />
  5404. <productGroupable type="1"
  5405. />
  5406. </product>
  5407. <product id="20S_EVO"
  5408. name="20S EVO"
  5409. series="20"
  5410. latestVersion="2.2.3"
  5411. show = "1" >
  5412. <productMenu id="protocol"
  5413. type="0">
  5414. </productMenu>
  5415. <productMenu id="wa"
  5416. type="5" >
  5417. </productMenu>
  5418. <productMenu id="sip"
  5419. type="1" >
  5420. <productMenuType version="1.0"
  5421. type="0"
  5422. />
  5423. </productMenu>
  5424. <productMenu id="bluetoothIntercom"
  5425. type="1" >
  5426. <productMenuType version="1.0"
  5427. type="0"
  5428. />
  5429. </productMenu>
  5430. <productMenu id="intercomSetting"
  5431. type="1" >
  5432. </productMenu>
  5433. <productMenu id="phone"
  5434. type="2" >
  5435. </productMenu>
  5436. <productMenu id="fmradio"
  5437. type="3" >
  5438. </productMenu>
  5439. <productMenu id="deviceSetting"
  5440. type="1"
  5441. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  5442. <productMenuURL version="2.0.2"
  5443. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5444. />
  5445. <productMenuURL version="1.5"
  5446. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5447. />
  5448. <productMenuURL version="1.4.1"
  5449. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5450. />
  5451. <productMenuURL version="1.1"
  5452. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5453. />
  5454. <productMenuURL version="1.0"
  5455. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5456. />
  5457. </productMenu>
  5458. <productMenu id="quickGuide"
  5459. type="0"
  5460. url=""
  5461. size="264KB" >
  5462. </productMenu>
  5463. <productMenu id="userGuide"
  5464. type="1"
  5465. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  5466. size="3.09MB" >
  5467. </productMenu>
  5468. <productMenu id="connectGuide"
  5469. type="1"
  5470. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  5471. size="1.12MB" >
  5472. </productMenu>
  5473. <productID id="4210"
  5474. />
  5475. <productProductKey key="16"
  5476. />
  5477. <productGroupable type="1"
  5478. />
  5479. </product>
  5480. <product id="10S"
  5481. name="10S"
  5482. series="10"
  5483. latestVersion="3.0.1"
  5484. show = "1" >
  5485. <productMenu id="protocol"
  5486. type="3" >
  5487. </productMenu>
  5488. <productMenu id="sip"
  5489. type="1" >
  5490. </productMenu>
  5491. <productMenu id="bluetoothIntercom"
  5492. type="1" >
  5493. </productMenu>
  5494. <productMenu id="phone"
  5495. type="1" >
  5496. </productMenu>
  5497. <productMenu id="deviceSetting"
  5498. type="1"
  5499. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  5500. </productMenu>
  5501. <productMenu id="quickGuide"
  5502. type="1"
  5503. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  5504. size="934KB" >
  5505. </productMenu>
  5506. <productMenu id="userGuide"
  5507. type="1"
  5508. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  5509. size="1.14MB" >
  5510. </productMenu>
  5511. <productMenu id="connectGuide"
  5512. type="1"
  5513. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5514. size="1.12MB" >
  5515. </productMenu>
  5516. <productID id="3380"
  5517. />
  5518. <productGroupable type="0"
  5519. />
  5520. </product>
  5521. <product id="10S"
  5522. name="10S"
  5523. series="10"
  5524. latestVersion="2.1.1"
  5525. show = "-1" >
  5526. <productMenu id="protocol"
  5527. type="0">
  5528. </productMenu>
  5529. <productMenu id="sip"
  5530. type="1" >
  5531. </productMenu>
  5532. <productMenu id="bluetoothIntercom"
  5533. type="1" >
  5534. </productMenu>
  5535. <productMenu id="phone"
  5536. type="2" >
  5537. </productMenu>
  5538. <productMenu id="fmradio"
  5539. type="3" >
  5540. </productMenu>
  5541. <productMenu id="deviceSetting"
  5542. type="1"
  5543. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  5544. <productMenuURL version="1.5"
  5545. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  5546. />
  5547. <productMenuURL version="1.3.1"
  5548. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  5549. />
  5550. </productMenu>
  5551. <productMenu id="quickGuide"
  5552. type="1"
  5553. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  5554. size="310KB" >
  5555. </productMenu>
  5556. <productMenu id="userGuide"
  5557. type="1"
  5558. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  5559. size="1.57MB" >
  5560. </productMenu>
  5561. <productID id="5530"
  5562. />
  5563. <productGroupable type="0"
  5564. />
  5565. </product>
  5566. <product id="10R"
  5567. name="10R"
  5568. series="10"
  5569. latestVersion="2.1.1"
  5570. show = "1" >
  5571. <productMenu id="protocol"
  5572. type="0">
  5573. </productMenu>
  5574. <productMenu id="sip"
  5575. type="1" >
  5576. <productMenuType version="1.0.2"
  5577. type="0"
  5578. />
  5579. </productMenu>
  5580. <productMenu id="bluetoothIntercom"
  5581. type="1" >
  5582. <productMenuType version="1.0.2"
  5583. type="0"
  5584. />
  5585. </productMenu>
  5586. <productMenu id="phone"
  5587. type="2" >
  5588. </productMenu>
  5589. <productMenu id="fmradio"
  5590. type="3" >
  5591. </productMenu>
  5592. <productMenu id="deviceSetting"
  5593. type="1"
  5594. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5595. <productMenuURL version="1.4"
  5596. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  5597. />
  5598. <productMenuURL version="1.2.1"
  5599. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  5600. />
  5601. <productMenuURL version="1.0.2"
  5602. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  5603. />
  5604. <productMenuURL version="1.0"
  5605. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  5606. />
  5607. </productMenu>
  5608. <productMenu id="quickGuide"
  5609. type="1"
  5610. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  5611. size="400KB" >
  5612. </productMenu>
  5613. <productMenu id="userGuide"
  5614. type="1"
  5615. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  5616. size="2.75MB" >
  5617. </productMenu>
  5618. <productMenu id="connectGuide"
  5619. type="1"
  5620. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  5621. size="1.12MB" >
  5622. </productMenu>
  5623. <productID id="5520"
  5624. />
  5625. <productGroupable type="0"
  5626. />
  5627. </product>
  5628. <product id="10C_EVO"
  5629. name="10C EVO"
  5630. series="10"
  5631. latestVersion="1.7"
  5632. show = "1" >
  5633. <productMenu id="protocol"
  5634. type="0">
  5635. </productMenu>
  5636. <productMenu id="sip"
  5637. type="1" >
  5638. </productMenu>
  5639. <productMenu id="bluetoothIntercom"
  5640. type="1" >
  5641. </productMenu>
  5642. <productMenu id="phone"
  5643. type="2" >
  5644. </productMenu>
  5645. <productMenu id="fmradio"
  5646. type="3" >
  5647. </productMenu>
  5648. <productMenu id="deviceSetting"
  5649. type="1"
  5650. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  5651. <productMenuURL version="1.3.1"
  5652. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  5653. />
  5654. </productMenu>
  5655. <productMenu id="quickGuide"
  5656. type="1"
  5657. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  5658. size="1.32MB" >
  5659. </productMenu>
  5660. <productMenu id="userGuide"
  5661. type="1"
  5662. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  5663. size="1.68MB" >
  5664. </productMenu>
  5665. <productMenu id="connectGuide"
  5666. type="1"
  5667. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  5668. size="1.12MB" >
  5669. </productMenu>
  5670. <productID id="5570"
  5671. />
  5672. <productGroupable type="0"
  5673. />
  5674. </product>
  5675. <product id="10C_Pro"
  5676. name="10C Pro"
  5677. series="10"
  5678. latestVersion="2.7.1"
  5679. show = "1" >
  5680. <productMenu id="protocol"
  5681. type="0">
  5682. </productMenu>
  5683. <productMenu id="sip"
  5684. type="1" >
  5685. </productMenu>
  5686. <productMenu id="bluetoothIntercom"
  5687. type="1" >
  5688. </productMenu>
  5689. <productMenu id="phone"
  5690. type="2" >
  5691. </productMenu>
  5692. <productMenu id="fmradio"
  5693. type="3" >
  5694. </productMenu>
  5695. <productMenu id="deviceSetting"
  5696. type="1"
  5697. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  5698. <productMenuURL version="2.5.1"
  5699. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  5700. />
  5701. <productMenuURL version="1.0"
  5702. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  5703. />
  5704. </productMenu>
  5705. <productMenu id="quickGuide"
  5706. type="1"
  5707. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  5708. size="651KB" >
  5709. </productMenu>
  5710. <productMenu id="userGuide"
  5711. type="1"
  5712. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  5713. size="2.34MB" >
  5714. </productMenu>
  5715. <productMenu id="connectGuide"
  5716. type="1"
  5717. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  5718. size="1.12MB" >
  5719. </productMenu>
  5720. <productID id="5580"
  5721. />
  5722. <productGroupable type="0"
  5723. />
  5724. </product>
  5725. <product id="10C"
  5726. name="10C"
  5727. series="10"
  5728. latestVersion="3.0.4"
  5729. show = "1" >
  5730. <productMenu id="protocol"
  5731. type="0">
  5732. </productMenu>
  5733. <productMenu id="sip"
  5734. type="1" >
  5735. <productMenuType version="1.0.4"
  5736. type="0"
  5737. />
  5738. </productMenu>
  5739. <productMenu id="bluetoothIntercom"
  5740. type="1" >
  5741. <productMenuType version="1.0.4"
  5742. type="0"
  5743. />
  5744. </productMenu>
  5745. <productMenu id="phone"
  5746. type="2" >
  5747. </productMenu>
  5748. <productMenu id="fmradio"
  5749. type="3" >
  5750. </productMenu>
  5751. <productMenu id="deviceSetting"
  5752. type="1"
  5753. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  5754. <productMenuURL version="2.3"
  5755. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  5756. />
  5757. <productMenuURL version="2.1.1"
  5758. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  5759. />
  5760. <productMenuURL version="1.0.4"
  5761. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  5762. />
  5763. <productMenuURL version="1.0.2"
  5764. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  5765. />
  5766. </productMenu>
  5767. <productMenu id="quickGuide"
  5768. type="1"
  5769. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  5770. size="935KB" >
  5771. </productMenu>
  5772. <productMenu id="userGuide"
  5773. type="1"
  5774. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  5775. size="2.82MB" >
  5776. </productMenu>
  5777. <productMenu id="connectGuide"
  5778. type="1"
  5779. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  5780. size="1.12MB" >
  5781. </productMenu>
  5782. <productID id="5510"
  5783. />
  5784. <productGroupable type="0"
  5785. />
  5786. </product>
  5787. <product id="10U_GT_AIR"
  5788. name="10U GT-Air"
  5789. series="10"
  5790. latestVersion="2.0.4"
  5791. show = "1" >
  5792. <productMenu id="protocol"
  5793. type="0">
  5794. </productMenu>
  5795. <productMenu id="sip"
  5796. type="1" >
  5797. <productMenuType version="1.0.2"
  5798. type="0"
  5799. />
  5800. </productMenu>
  5801. <productMenu id="bluetoothIntercom"
  5802. type="1" >
  5803. <productMenuType version="1.0.2"
  5804. type="0"
  5805. />
  5806. </productMenu>
  5807. <productMenu id="phone"
  5808. type="2" >
  5809. </productMenu>
  5810. <productMenu id="fmradio"
  5811. type="3" >
  5812. </productMenu>
  5813. <productMenu id="deviceSetting"
  5814. type="1"
  5815. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5816. <productMenuURL version="1.3.2"
  5817. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5818. />
  5819. <productMenuURL version="1.0.2"
  5820. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5821. />
  5822. </productMenu>
  5823. <productMenu id="quickGuide"
  5824. type="1"
  5825. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  5826. size="685KB" >
  5827. </productMenu>
  5828. <productMenu id="userGuide"
  5829. type="1"
  5830. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5831. size="684KB" >
  5832. </productMenu>
  5833. <productMenu id="connectGuide"
  5834. type="1"
  5835. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5836. size="1.12MB" >
  5837. </productMenu>
  5838. <productID id="5610"
  5839. />
  5840. <productGroupable type="0"
  5841. />
  5842. </product>
  5843. <product id="10U_NEOTEC"
  5844. name="10U Neotec"
  5845. series="10"
  5846. latestVersion="2.0.4"
  5847. show = "1" >
  5848. <productMenu id="protocol"
  5849. type="0">
  5850. </productMenu>
  5851. <productMenu id="sip"
  5852. type="1" >
  5853. <productMenuType version="1.0.2"
  5854. type="0"
  5855. />
  5856. </productMenu>
  5857. <productMenu id="bluetoothIntercom"
  5858. type="1" >
  5859. <productMenuType version="1.0.2"
  5860. type="0"
  5861. />
  5862. </productMenu>
  5863. <productMenu id="phone"
  5864. type="2" >
  5865. </productMenu>
  5866. <productMenu id="fmradio"
  5867. type="3" >
  5868. </productMenu>
  5869. <productMenu id="deviceSetting"
  5870. type="1"
  5871. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5872. <productMenuURL version="1.3.2"
  5873. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5874. />
  5875. <productMenuURL version="1.0.2"
  5876. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5877. />
  5878. </productMenu>
  5879. <productMenu id="quickGuide"
  5880. type="1"
  5881. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  5882. size="689KB" >
  5883. </productMenu>
  5884. <productMenu id="userGuide"
  5885. type="1"
  5886. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5887. size="684KB" >
  5888. </productMenu>
  5889. <productMenu id="connectGuide"
  5890. type="1"
  5891. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5892. size="1.12MB" >
  5893. </productMenu>
  5894. <productID id="5611"
  5895. />
  5896. <productGroupable type="0"
  5897. />
  5898. </product>
  5899. <product id="10U_J_CRUISE"
  5900. name="10U J-Cruise"
  5901. series="10"
  5902. latestVersion="2.0.4"
  5903. show = "1" >
  5904. <productMenu id="protocol"
  5905. type="0">
  5906. </productMenu>
  5907. <productMenu id="sip"
  5908. type="1" >
  5909. <productMenuType version="1.0.2"
  5910. type="0"
  5911. />
  5912. </productMenu>
  5913. <productMenu id="bluetoothIntercom"
  5914. type="1" >
  5915. <productMenuType version="1.0.2"
  5916. type="0"
  5917. />
  5918. </productMenu>
  5919. <productMenu id="phone"
  5920. type="2" >
  5921. </productMenu>
  5922. <productMenu id="fmradio"
  5923. type="3" >
  5924. </productMenu>
  5925. <productMenu id="deviceSetting"
  5926. type="1"
  5927. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5928. <productMenuURL version="1.3.2"
  5929. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5930. />
  5931. <productMenuURL version="1.0.2"
  5932. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5933. />
  5934. </productMenu>
  5935. <productMenu id="quickGuide"
  5936. type="1"
  5937. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  5938. size="686KB" >
  5939. </productMenu>
  5940. <productMenu id="userGuide"
  5941. type="1"
  5942. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5943. size="684KB" >
  5944. </productMenu>
  5945. <productMenu id="connectGuide"
  5946. type="1"
  5947. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5948. size="1.12MB" >
  5949. </productMenu>
  5950. <productID id="5612"
  5951. />
  5952. <productGroupable type="0"
  5953. />
  5954. </product>
  5955. <product id="10U_C3"
  5956. name="10U C3/C3Pro"
  5957. series="10"
  5958. latestVersion="2.0.4"
  5959. show = "1" >
  5960. <productMenu id="protocol"
  5961. type="0">
  5962. </productMenu>
  5963. <productMenu id="sip"
  5964. type="1" >
  5965. <productMenuType version="1.0.2"
  5966. type="0"
  5967. />
  5968. </productMenu>
  5969. <productMenu id="bluetoothIntercom"
  5970. type="1" >
  5971. <productMenuType version="1.0.2"
  5972. type="0"
  5973. />
  5974. </productMenu>
  5975. <productMenu id="phone"
  5976. type="2" >
  5977. </productMenu>
  5978. <productMenu id="fmradio"
  5979. type="3" >
  5980. </productMenu>
  5981. <productMenu id="deviceSetting"
  5982. type="1"
  5983. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5984. <productMenuURL version="1.3.2"
  5985. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5986. />
  5987. <productMenuURL version="1.0.2"
  5988. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5989. />
  5990. </productMenu>
  5991. <productMenu id="quickGuide"
  5992. type="1"
  5993. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  5994. size="199KB" >
  5995. </productMenu>
  5996. <productMenu id="userGuide"
  5997. type="1"
  5998. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5999. size="684KB" >
  6000. </productMenu>
  6001. <productMenu id="connectGuide"
  6002. type="1"
  6003. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  6004. size="1.12MB" >
  6005. </productMenu>
  6006. <productID id="5620"
  6007. />
  6008. <productGroupable type="0"
  6009. />
  6010. </product>
  6011. <product id="10U_ARAI"
  6012. name="10U Arai"
  6013. series="10"
  6014. latestVersion="2.0.4"
  6015. show = "1" >
  6016. <productMenu id="protocol"
  6017. type="0">
  6018. </productMenu>
  6019. <productMenu id="sip"
  6020. type="1" >
  6021. <productMenuType version="1.0.2"
  6022. type="0"
  6023. />
  6024. </productMenu>
  6025. <productMenu id="bluetoothIntercom"
  6026. type="1" >
  6027. <productMenuType version="1.0.2"
  6028. type="0"
  6029. />
  6030. </productMenu>
  6031. <productMenu id="phone"
  6032. type="2" >
  6033. </productMenu>
  6034. <productMenu id="fmradio"
  6035. type="3" >
  6036. </productMenu>
  6037. <productMenu id="deviceSetting"
  6038. type="1"
  6039. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  6040. <productMenuURL version="1.3.2"
  6041. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  6042. />
  6043. <productMenuURL version="1.0.2"
  6044. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  6045. />
  6046. </productMenu>
  6047. <productMenu id="quickGuide"
  6048. type="1"
  6049. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  6050. size="689KB" >
  6051. </productMenu>
  6052. <productMenu id="userGuide"
  6053. type="1"
  6054. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  6055. size="684KB" >
  6056. </productMenu>
  6057. <productMenu id="connectGuide"
  6058. type="1"
  6059. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  6060. size="1.12MB" >
  6061. </productMenu>
  6062. <productID id="5621"
  6063. />
  6064. <productGroupable type="0"
  6065. />
  6066. </product>
  6067. <product id="10Upad"
  6068. name="10Upad"
  6069. series="10"
  6070. latestVersion="2.0.3"
  6071. show = "1" >
  6072. <productMenu id="protocol"
  6073. type="0">
  6074. </productMenu>
  6075. <productMenu id="sip"
  6076. type="1" >
  6077. </productMenu>
  6078. <productMenu id="bluetoothIntercom"
  6079. type="1" >
  6080. </productMenu>
  6081. <productMenu id="phone"
  6082. type="2" >
  6083. </productMenu>
  6084. <productMenu id="fmradio"
  6085. type="3" >
  6086. </productMenu>
  6087. <productMenu id="deviceSetting"
  6088. type="1"
  6089. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  6090. <productMenuURL version="1.0.3"
  6091. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  6092. />
  6093. </productMenu>
  6094. <productMenu id="quickGuide"
  6095. type="1"
  6096. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  6097. size="615KB" >
  6098. </productMenu>
  6099. <productMenu id="userGuide"
  6100. type="1"
  6101. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  6102. size="0.99MB" >
  6103. </productMenu>
  6104. <productMenu id="connectGuide"
  6105. type="1"
  6106. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6107. size="1.12MB" >
  6108. </productMenu>
  6109. <productID id="6210"
  6110. />
  6111. <productGroupable type="0"
  6112. />
  6113. </product>
  6114. <product id="5S"
  6115. name="5S"
  6116. series="5"
  6117. latestVersion="2.2.1"
  6118. show = "1" >
  6119. <productMenu id="protocol"
  6120. type="3" >
  6121. </productMenu>
  6122. <productMenu id="sip"
  6123. type="1" >
  6124. </productMenu>
  6125. <productMenu id="bluetoothIntercom"
  6126. type="1" >
  6127. </productMenu>
  6128. <productMenu id="phone"
  6129. type="1" >
  6130. </productMenu>
  6131. <productMenu id="fmradio"
  6132. type="0" >
  6133. </productMenu>
  6134. <productMenu id="deviceSetting"
  6135. type="1"
  6136. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  6137. </productMenu>
  6138. <productMenu id="quickGuide"
  6139. type="0"
  6140. url=""
  6141. size="934KB" >
  6142. </productMenu>
  6143. <productMenu id="userGuide"
  6144. type="1"
  6145. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  6146. size="1.14MB" >
  6147. </productMenu>
  6148. <productMenu id="connectGuide"
  6149. type="1"
  6150. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  6151. size="1.12MB" >
  6152. </productMenu>
  6153. <productID id="5590"
  6154. />
  6155. <productGroupable type="0"
  6156. />
  6157. </product>
  6158. <product id="5S"
  6159. name="5S"
  6160. series="5"
  6161. latestVersion="1.2"
  6162. show = "-1" >
  6163. <productMenu id="protocol"
  6164. type="0">
  6165. </productMenu>
  6166. <productMenu id="sip"
  6167. type="1" >
  6168. </productMenu>
  6169. <productMenu id="bluetoothIntercom"
  6170. type="1" >
  6171. </productMenu>
  6172. <productMenu id="phone"
  6173. type="2" >
  6174. </productMenu>
  6175. <productMenu id="fmradio"
  6176. type="0" >
  6177. </productMenu>
  6178. <productMenu id="deviceSetting"
  6179. type="1"
  6180. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  6181. </productMenu>
  6182. <productMenu id="quickGuide"
  6183. type="0"
  6184. url=""
  6185. size="970KB" >
  6186. </productMenu>
  6187. <productMenu id="userGuide"
  6188. type="1"
  6189. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  6190. size="1.26MB" >
  6191. </productMenu>
  6192. <productID id="5534"
  6193. />
  6194. <productGroupable type="0"
  6195. />
  6196. </product>
  6197. <product id="5S"
  6198. name="5S"
  6199. series="5"
  6200. latestVersion="3.0.1"
  6201. show = "-1" >
  6202. <productMenu id="protocol"
  6203. type="0">
  6204. </productMenu>
  6205. <productMenu id="sip"
  6206. type="1" >
  6207. </productMenu>
  6208. <productMenu id="bluetoothIntercom"
  6209. type="1" >
  6210. </productMenu>
  6211. <productMenu id="phone"
  6212. type="2" >
  6213. </productMenu>
  6214. <productMenu id="fmradio"
  6215. type="0" >
  6216. </productMenu>
  6217. <productMenu id="deviceSetting"
  6218. type="1"
  6219. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  6220. </productMenu>
  6221. <productMenu id="quickGuide"
  6222. type="0"
  6223. url=""
  6224. size="970KB" >
  6225. </productMenu>
  6226. <productMenu id="userGuide"
  6227. type="1"
  6228. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  6229. size="1.26MB" >
  6230. </productMenu>
  6231. <productID id="5538"
  6232. />
  6233. <productGroupable type="0"
  6234. />
  6235. </product>
  6236. <product id="3SPLUS"
  6237. name="3S PLUS"
  6238. series="3"
  6239. latestVersion="2.2"
  6240. show = "1" >
  6241. <productMenu id="protocol"
  6242. type="3" >
  6243. </productMenu>
  6244. <productMenu id="sip"
  6245. type="1" >
  6246. </productMenu>
  6247. <productMenu id="bluetoothIntercom"
  6248. type="1" >
  6249. </productMenu>
  6250. <productMenu id="deviceSetting"
  6251. type="1"
  6252. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  6253. <productMenuURL version="2.2.1"
  6254. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  6255. />
  6256. </productMenu>
  6257. <productMenu id="quickGuide"
  6258. type="1"
  6259. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  6260. size="344KB" >
  6261. </productMenu>
  6262. <productMenu id="userGuide"
  6263. type="1"
  6264. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  6265. size="1.14MB" >
  6266. </productMenu>
  6267. <productMenu id="connectGuide"
  6268. type="1"
  6269. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  6270. size="1.12MB" >
  6271. </productMenu>
  6272. <productID id="4023"
  6273. />
  6274. <productGroupable type="0"
  6275. />
  6276. </product>
  6277. <product id="3SPLUS"
  6278. name="3S PLUS"
  6279. series="3"
  6280. latestVersion="1.1"
  6281. show = "-1" >
  6282. <productMenu id="protocol"
  6283. type="0">
  6284. </productMenu>
  6285. <productMenu id="sip"
  6286. type="1" >
  6287. </productMenu>
  6288. <productMenu id="bluetoothIntercom"
  6289. type="1" >
  6290. </productMenu>
  6291. <productMenu id="deviceSetting"
  6292. type="1"
  6293. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  6294. </productMenu>
  6295. <productMenu id="quickGuide"
  6296. type="1"
  6297. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  6298. size="842KB" >
  6299. </productMenu>
  6300. <productMenu id="userGuide"
  6301. type="1"
  6302. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  6303. size="1.02MB" >
  6304. </productMenu>
  6305. <productID id="6320"
  6306. />
  6307. <productGroupable type="0"
  6308. />
  6309. </product>
  6310. <product id="iCon"
  6311. name="iCon"
  6312. series="50"
  6313. latestVersion="1.0.1"
  6314. show = "0" >
  6315. <productMenu id="protocol"
  6316. type="2" >
  6317. </productMenu>
  6318. <productMenu id="alexa"
  6319. type="0" >
  6320. </productMenu>
  6321. <productMenu id="wa"
  6322. type="0" >
  6323. </productMenu>
  6324. <productMenu id="sip"
  6325. type="1" >
  6326. </productMenu>
  6327. <productMenu id="led"
  6328. type="3" >
  6329. </productMenu>
  6330. <productMenu id="meshIntercom"
  6331. type="20" >
  6332. </productMenu>
  6333. <productMenu id="meshIntercom+"
  6334. type="3"
  6335. url="0" >
  6336. <productMenuType version="1.0.9"
  6337. type="2"
  6338. />
  6339. </productMenu>
  6340. <productMenu id="bluetoothIntercom"
  6341. type="1" >
  6342. </productMenu>
  6343. <productMenu id="phone"
  6344. type="1" >
  6345. </productMenu>
  6346. <productMenu id="music"
  6347. type="1" >
  6348. </productMenu>
  6349. <productMenu id="fmradio"
  6350. type="1" >
  6351. </productMenu>
  6352. <productMenu id="deviceSetting"
  6353. type="1"
  6354. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  6355. <productMenuURL version="1.0.9"
  6356. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6357. />
  6358. </productMenu>
  6359. <productMenu id="quickGuide"
  6360. type="1"
  6361. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  6362. size="344KB" >
  6363. </productMenu>
  6364. <productMenu id="userGuide"
  6365. type="1"
  6366. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.0.0_en_220830.pdf"
  6367. size="3.41MB" >
  6368. </productMenu>
  6369. <productMenu id="volume"
  6370. type="11" >
  6371. </productMenu>
  6372. <productMenu id="battery"
  6373. type="1" >
  6374. </productMenu>
  6375. <productID id="3900"
  6376. />
  6377. <productGroupable type="0"
  6378. />
  6379. </product>
  6380. <product id="HD50S"
  6381. name="H-D Audio 50S"
  6382. series="50"
  6383. latestVersion="1.0.1"
  6384. show = "-1" >
  6385. <productMenu id="protocol"
  6386. type="2" >
  6387. </productMenu>
  6388. <productMenu id="alexa"
  6389. type="0" >
  6390. </productMenu>
  6391. <productMenu id="ota"
  6392. type="0"
  6393. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6394. size="1150234" >
  6395. </productMenu>
  6396. <productMenu id="wa"
  6397. type="1" >
  6398. </productMenu>
  6399. <productMenu id="sip"
  6400. type="1" >
  6401. </productMenu>
  6402. <productMenu id="meshIntercom"
  6403. type="20" >
  6404. </productMenu>
  6405. <productMenu id="bluetoothIntercom"
  6406. type="1" >
  6407. </productMenu>
  6408. <productMenu id="phone"
  6409. type="1" >
  6410. </productMenu>
  6411. <productMenu id="music"
  6412. type="1" >
  6413. </productMenu>
  6414. <productMenu id="fmradio"
  6415. type="1" >
  6416. </productMenu>
  6417. <productMenu id="deviceSetting"
  6418. type="1"
  6419. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  6420. </productMenu>
  6421. <productMenu id="quickGuide"
  6422. type="1"
  6423. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  6424. size="934KB" >
  6425. </productMenu>
  6426. <productMenu id="userGuide"
  6427. type="1"
  6428. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  6429. size="1.14MB" >
  6430. </productMenu>
  6431. <productMenu id="volume"
  6432. type="11" >
  6433. </productMenu>
  6434. <productMenu id="battery"
  6435. type="1" >
  6436. </productMenu>
  6437. <productID id="3156"
  6438. />
  6439. <productGroupable type="0"
  6440. />
  6441. </product>
  6442. <product id="HD50S"
  6443. name="H-D Audio 50S"
  6444. series="50"
  6445. latestVersion="2.0.2"
  6446. show = "0" >
  6447. <productMenu id="protocol"
  6448. type="2" >
  6449. </productMenu>
  6450. <productMenu id="alexa"
  6451. type="0" >
  6452. </productMenu>
  6453. <productMenu id="ota"
  6454. type="0"
  6455. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6456. size="1150234" >
  6457. </productMenu>
  6458. <productMenu id="wa"
  6459. type="1" >
  6460. </productMenu>
  6461. <productMenu id="sip"
  6462. type="1" >
  6463. </productMenu>
  6464. <productMenu id="meshIntercom"
  6465. type="20" >
  6466. </productMenu>
  6467. <productMenu id="bluetoothIntercom"
  6468. type="1" >
  6469. </productMenu>
  6470. <productMenu id="phone"
  6471. type="1" >
  6472. </productMenu>
  6473. <productMenu id="music"
  6474. type="1" >
  6475. </productMenu>
  6476. <productMenu id="fmradio"
  6477. type="1" >
  6478. </productMenu>
  6479. <productMenu id="deviceSetting"
  6480. type="1"
  6481. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  6482. </productMenu>
  6483. <productMenu id="quickGuide"
  6484. type="1"
  6485. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  6486. size="934KB" >
  6487. </productMenu>
  6488. <productMenu id="userGuide"
  6489. type="1"
  6490. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  6491. size="1.14MB" >
  6492. </productMenu>
  6493. <productMenu id="volume"
  6494. type="11" >
  6495. </productMenu>
  6496. <productMenu id="battery"
  6497. type="1" >
  6498. </productMenu>
  6499. <productID id="3213"
  6500. />
  6501. <productGroupable type="0"
  6502. />
  6503. </product>
  6504. <product id="HD50C"
  6505. name="H-D Audio 50C"
  6506. series="50"
  6507. latestVersion="1.0.1"
  6508. show = "0" >
  6509. <productMenu id="protocol"
  6510. type="2" >
  6511. </productMenu>
  6512. <productMenu id="ota"
  6513. type="0" >
  6514. </productMenu>
  6515. <productMenu id="wa"
  6516. type="1" >
  6517. </productMenu>
  6518. <productMenu id="sip"
  6519. type="1" >
  6520. </productMenu>
  6521. <productMenu id="meshIntercom"
  6522. type="20" >
  6523. </productMenu>
  6524. <productMenu id="bluetoothIntercom"
  6525. type="1" >
  6526. </productMenu>
  6527. <productMenu id="phone"
  6528. type="1" >
  6529. </productMenu>
  6530. <productMenu id="music"
  6531. type="1" >
  6532. </productMenu>
  6533. <productMenu id="fmradio"
  6534. type="1" >
  6535. </productMenu>
  6536. <productMenu id="deviceSetting"
  6537. type="1"
  6538. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  6539. </productMenu>
  6540. <productMenu id="quickGuide"
  6541. type="1"
  6542. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  6543. size="344KB" >
  6544. </productMenu>
  6545. <productMenu id="userGuide"
  6546. type="1"
  6547. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  6548. size="3.41MB" >
  6549. </productMenu>
  6550. <productMenu id="volume"
  6551. type="11" >
  6552. </productMenu>
  6553. <productMenu id="battery"
  6554. type="1" >
  6555. </productMenu>
  6556. <productID id="3240"
  6557. />
  6558. <productGroupable type="0"
  6559. />
  6560. </product>
  6561. <product id="HD50S"
  6562. name="FURY N04"
  6563. series="Helmet"
  6564. latestVersion="1.0"
  6565. show = "0" >
  6566. <productMenu id="protocol"
  6567. type="2" >
  6568. </productMenu>
  6569. <productMenu id="alexa"
  6570. type="0" >
  6571. </productMenu>
  6572. <productMenu id="ota"
  6573. type="0" >
  6574. </productMenu>
  6575. <productMenu id="wa"
  6576. type="0" >
  6577. </productMenu>
  6578. <productMenu id="meshIntercom"
  6579. type="20" >
  6580. </productMenu>
  6581. <productMenu id="meshIntercom+"
  6582. type="3"
  6583. url="0" >
  6584. <productMenuType version="1.0.9"
  6585. type="2"
  6586. />
  6587. </productMenu>
  6588. <productMenu id="phone"
  6589. type="1" >
  6590. </productMenu>
  6591. <productMenu id="music"
  6592. type="1" >
  6593. </productMenu>
  6594. <productMenu id="fmradio"
  6595. type="1" >
  6596. </productMenu>
  6597. <productMenu id="deviceSetting"
  6598. type="1"
  6599. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  6600. <productMenuURL version="1.0.9"
  6601. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  6602. />
  6603. </productMenu>
  6604. <productMenu id="quickGuide"
  6605. type="1"
  6606. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  6607. size="1.12MB" >
  6608. </productMenu>
  6609. <productMenu id="userGuide"
  6610. type="1"
  6611. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  6612. size="2.0MB" >
  6613. </productMenu>
  6614. <productMenu id="volume"
  6615. type="13" >
  6616. </productMenu>
  6617. <productMenu id="battery"
  6618. type="1" >
  6619. </productMenu>
  6620. <productID id="5553"
  6621. />
  6622. <productGroupable type="0"
  6623. />
  6624. </product>
  6625. <product id="XCOM3Pro"
  6626. name="X-COM3 Pro"
  6627. series="50"
  6628. latestVersion="1.1"
  6629. show = "0" >
  6630. <productMenu id="protocol"
  6631. type="2" >
  6632. </productMenu>
  6633. <productMenu id="alexa"
  6634. type="0" >
  6635. </productMenu>
  6636. <productMenu id="ota"
  6637. type="0" >
  6638. </productMenu>
  6639. <productMenu id="wa"
  6640. type="0" >
  6641. </productMenu>
  6642. <productMenu id="sip"
  6643. type="1" >
  6644. </productMenu>
  6645. <productMenu id="meshIntercom"
  6646. type="30" >
  6647. </productMenu>
  6648. <productMenu id="meshIntercom+"
  6649. type="3"
  6650. url="2" >
  6651. <productMenuType version="1.1"
  6652. type="2"
  6653. />
  6654. </productMenu>
  6655. <productMenu id="waveIntercom"
  6656. type="1" >
  6657. <productMenuType version="1.1"
  6658. type="0"
  6659. />
  6660. </productMenu>
  6661. <productMenu id="bluetoothIntercom"
  6662. type="1" >
  6663. </productMenu>
  6664. <productMenu id="phone"
  6665. type="1" >
  6666. </productMenu>
  6667. <productMenu id="music"
  6668. type="1" >
  6669. </productMenu>
  6670. <productMenu id="fmradio"
  6671. type="1" >
  6672. </productMenu>
  6673. <productMenu id="deviceSetting"
  6674. type="1"
  6675. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  6676. <productMenuURL version="1.1"
  6677. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  6678. />
  6679. </productMenu>
  6680. <productMenu id="quickGuide"
  6681. type="0"
  6682. url=""
  6683. size="344KB" >
  6684. </productMenu>
  6685. <productMenu id="userGuide"
  6686. type="1"
  6687. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  6688. size="3.41MB" >
  6689. </productMenu>
  6690. <productMenu id="volume"
  6691. type="11" >
  6692. </productMenu>
  6693. <productMenu id="battery"
  6694. type="1" >
  6695. </productMenu>
  6696. <productID id="321A"
  6697. />
  6698. <productGroupable type="0"
  6699. />
  6700. </product>
  6701. <product id="XCOM3"
  6702. name="X-COM3"
  6703. series="20"
  6704. latestVersion="1.0"
  6705. show = "0" >
  6706. <productMenu id="protocol"
  6707. type="2" >
  6708. </productMenu>
  6709. <productMenu id="sip"
  6710. type="1" >
  6711. </productMenu>
  6712. <productMenu id="bluetoothIntercom"
  6713. type="1" >
  6714. </productMenu>
  6715. <productMenu id="phone"
  6716. type="1" >
  6717. </productMenu>
  6718. <productMenu id="music"
  6719. type="1" >
  6720. </productMenu>
  6721. <productMenu id="fmradio"
  6722. type="1" >
  6723. </productMenu>
  6724. <productMenu id="deviceSetting"
  6725. type="1"
  6726. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  6727. </productMenu>
  6728. <productMenu id="quickGuide"
  6729. type="0"
  6730. url=""
  6731. size="934KB" >
  6732. </productMenu>
  6733. <productMenu id="userGuide"
  6734. type="1"
  6735. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  6736. size="1.14MB" >
  6737. </productMenu>
  6738. <productMenu id="volume"
  6739. type="15" >
  6740. </productMenu>
  6741. <productID id="3410"
  6742. />
  6743. <productGroupable type="0"
  6744. />
  6745. </product>
  6746. <product id="X-COM2"
  6747. name="X-COM2"
  6748. series="20"
  6749. latestVersion="1.0.5"
  6750. show = "0" >
  6751. <productMenu id="protocol"
  6752. type="0">
  6753. </productMenu>
  6754. <productMenu id="sip"
  6755. type="1" >
  6756. </productMenu>
  6757. <productMenu id="bluetoothIntercom"
  6758. type="1" >
  6759. </productMenu>
  6760. <productMenu id="intercomSetting"
  6761. type="1" >
  6762. </productMenu>
  6763. <productMenu id="phone"
  6764. type="2" >
  6765. </productMenu>
  6766. <productMenu id="fmradio"
  6767. type="3" >
  6768. </productMenu>
  6769. <productMenu id="deviceSetting"
  6770. type="1"
  6771. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6772. </productMenu>
  6773. <productMenu id="quickGuide"
  6774. type="1"
  6775. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  6776. size="796KB" >
  6777. </productMenu>
  6778. <productMenu id="userGuide"
  6779. type="1"
  6780. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  6781. size="1.90MB" >
  6782. </productMenu>
  6783. <productID id="2030"
  6784. />
  6785. <productGroupable type="1"
  6786. />
  6787. </product>
  6788. <product id="AVAABC"
  6789. name="AVA ABC"
  6790. series="SPIDER"
  6791. latestVersion="1.0"
  6792. show = "0" >
  6793. <productMenu id="protocol"
  6794. type="2" >
  6795. </productMenu>
  6796. <productMenu id="alexa"
  6797. type="0" >
  6798. </productMenu>
  6799. <productMenu id="ota"
  6800. type="0" >
  6801. </productMenu>
  6802. <productMenu id="wa"
  6803. type="0" >
  6804. </productMenu>
  6805. <productMenu id="meshIntercom"
  6806. type="20" >
  6807. </productMenu>
  6808. <productMenu id="phone"
  6809. type="1" >
  6810. </productMenu>
  6811. <productMenu id="music"
  6812. type="1" >
  6813. </productMenu>
  6814. <productMenu id="musicSharing"
  6815. type="0" >
  6816. </productMenu>
  6817. <productMenu id="deviceSetting"
  6818. type="1"
  6819. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  6820. </productMenu>
  6821. <productMenu id="quickGuide"
  6822. type="1"
  6823. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  6824. size="1.12MB" >
  6825. </productMenu>
  6826. <productMenu id="userGuide"
  6827. type="1"
  6828. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  6829. size="2.0MB" >
  6830. </productMenu>
  6831. <productMenu id="volume"
  6832. type="12" >
  6833. </productMenu>
  6834. <productMenu id="battery"
  6835. type="1" >
  6836. </productMenu>
  6837. <productID id="6808"
  6838. />
  6839. <productGroupable type="0"
  6840. />
  6841. </product>
  6842. <product id="ADVANCEPROCOMMP"
  6843. name="ADVANCE PROCOM MP"
  6844. series="Helmet"
  6845. latestVersion="1.1.4"
  6846. latestVersionVoicePrompt="1.0"
  6847. show = "-1" >
  6848. <productMenu id="protocol"
  6849. type="2" >
  6850. </productMenu>
  6851. <productMenu id="ota"
  6852. type="0" >
  6853. <otaLanguages>
  6854. <otaLanguage
  6855. id="0"
  6856. name="English"
  6857. package="0"
  6858. />
  6859. <otaLanguage
  6860. id="0"
  6861. name="French"
  6862. package="1"
  6863. />
  6864. <otaLanguage
  6865. id="0"
  6866. name="Spanish"
  6867. package="2"
  6868. />
  6869. <otaLanguage
  6870. id="0"
  6871. name="Italian"
  6872. package="3"
  6873. />
  6874. <otaLanguage
  6875. id="0"
  6876. name="German"
  6877. package="4"
  6878. />
  6879. <otaLanguage
  6880. id="0"
  6881. name="Dutch"
  6882. package="5"
  6883. />
  6884. <otaLanguage
  6885. id="0"
  6886. name="Russian"
  6887. package="6"
  6888. />
  6889. <otaLanguage
  6890. id="0"
  6891. name="Chinese"
  6892. package="7"
  6893. />
  6894. <otaLanguage
  6895. id="0"
  6896. name="Korean"
  6897. package="8"
  6898. />
  6899. <otaLanguage
  6900. id="0"
  6901. name="Japanese"
  6902. package="9"
  6903. />
  6904. <otaLanguage
  6905. id="0"
  6906. name="Finnish"
  6907. package="10"
  6908. />
  6909. <otaLanguage
  6910. id="0"
  6911. name="Polish"
  6912. package="11"
  6913. />
  6914. </otaLanguages>
  6915. <otaPackages>
  6916. <package
  6917. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0.img"
  6918. size="5183988"
  6919. />
  6920. <package
  6921. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-fr-FR.img"
  6922. size="5183988"
  6923. />
  6924. <package
  6925. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-es-ES.img"
  6926. size="5183988"
  6927. />
  6928. <package
  6929. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-it-IT.img"
  6930. size="5183988"
  6931. />
  6932. <package
  6933. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-de-DE.img"
  6934. size="5183988"
  6935. />
  6936. <package
  6937. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-nl-NL.img"
  6938. size="5183988"
  6939. />
  6940. <package
  6941. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-ru-RU.img"
  6942. size="5183988"
  6943. />
  6944. <package
  6945. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-cmn-CN.img"
  6946. size="5183988"
  6947. />
  6948. <package
  6949. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-ko-KR.img"
  6950. size="5183988"
  6951. />
  6952. <package
  6953. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-ja-JP.img"
  6954. size="5183988"
  6955. />
  6956. <package
  6957. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-fi-FI.img"
  6958. size="5183988"
  6959. />
  6960. <package
  6961. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-pl-PL.img"
  6962. size="5183988"
  6963. />
  6964. </otaPackages>
  6965. </productMenu>
  6966. <productMenu id="wa"
  6967. type="0" >
  6968. </productMenu>
  6969. <productMenu id="led"
  6970. type="5" >
  6971. </productMenu>
  6972. <productMenu id="led+"
  6973. type="2"
  6974. url="1" >
  6975. </productMenu>
  6976. <productMenu id="meshIntercom"
  6977. type="30" >
  6978. </productMenu>
  6979. <productMenu id="meshIntercom+"
  6980. type="3"
  6981. url="2" >
  6982. </productMenu>
  6983. <productMenu id="waveIntercom"
  6984. type="1" >
  6985. </productMenu>
  6986. <productMenu id="fmradio"
  6987. type="1" >
  6988. </productMenu>
  6989. <productMenu id="phone"
  6990. type="0" >
  6991. </productMenu>
  6992. <productMenu id="music"
  6993. type="1" >
  6994. </productMenu>
  6995. <productMenu id="musicSharing"
  6996. type="0" >
  6997. </productMenu>
  6998. <productMenu id="deviceSetting"
  6999. type="1"
  7000. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  7001. </productMenu>
  7002. <productMenu id="quickGuide"
  7003. type="0"
  7004. url=""
  7005. size="1.12MB" >
  7006. </productMenu>
  7007. <productMenu id="userGuide"
  7008. type="1"
  7009. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  7010. size="2.0MB" >
  7011. </productMenu>
  7012. <productMenu id="videoGuide"
  7013. type="0"
  7014. url=""
  7015. size="3.41MB" >
  7016. </productMenu>
  7017. <productMenu id="connectGuide"
  7018. type="1"
  7019. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  7020. size="1.12MB" >
  7021. </productMenu>
  7022. <productMenu id="volume"
  7023. type="16" >
  7024. </productMenu>
  7025. <productMenu id="battery"
  7026. type="1" >
  7027. </productMenu>
  7028. <productID id="6A85"
  7029. />
  7030. <productGroupable type="0"
  7031. />
  7032. </product>
  7033. <product id="Triumph_50S"
  7034. name="Triumph 50S"
  7035. series="50"
  7036. latestVersion="1.5"
  7037. show = "0" >
  7038. <productMenu id="protocol"
  7039. type="2" >
  7040. </productMenu>
  7041. <productMenu id="alexa"
  7042. type="0" >
  7043. </productMenu>
  7044. <productMenu id="ota"
  7045. type="0"
  7046. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  7047. size="1150234" >
  7048. </productMenu>
  7049. <productMenu id="wa"
  7050. type="1" >
  7051. </productMenu>
  7052. <productMenu id="sip"
  7053. type="1" >
  7054. </productMenu>
  7055. <productMenu id="meshIntercom"
  7056. type="20" >
  7057. </productMenu>
  7058. <productMenu id="bluetoothIntercom"
  7059. type="1" >
  7060. </productMenu>
  7061. <productMenu id="meshIntercom+"
  7062. type="3"
  7063. url="2" >
  7064. <productMenuType version="1.2.9"
  7065. type="2"
  7066. />
  7067. <productMenuURL version="1.2.9"
  7068. url="0"
  7069. />
  7070. </productMenu>
  7071. <productMenu id="waveIntercom"
  7072. type="1" >
  7073. <productMenuType version="1.2.9"
  7074. type="0"
  7075. />
  7076. </productMenu>
  7077. <productMenu id="phone"
  7078. type="1" >
  7079. </productMenu>
  7080. <productMenu id="music"
  7081. type="1" >
  7082. </productMenu>
  7083. <productMenu id="fmradio"
  7084. type="1" >
  7085. </productMenu>
  7086. <productMenu id="deviceSetting"
  7087. type="1"
  7088. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  7089. <productMenuURL version="1.2.9"
  7090. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  7091. />
  7092. <productMenuURL version="1.0"
  7093. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  7094. />
  7095. </productMenu>
  7096. <productMenu id="quickGuide"
  7097. type="1"
  7098. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  7099. size="934KB" >
  7100. </productMenu>
  7101. <productMenu id="userGuide"
  7102. type="1"
  7103. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  7104. size="1.14MB" >
  7105. </productMenu>
  7106. <productMenu id="volume"
  7107. type="11" >
  7108. </productMenu>
  7109. <productMenu id="battery"
  7110. type="1" >
  7111. </productMenu>
  7112. <productID id="3264"
  7113. />
  7114. <productGroupable type="0"
  7115. />
  7116. </product>
  7117. <product id="RE50S"
  7118. name="RE 50S"
  7119. series="50"
  7120. latestVersion="2.7"
  7121. show = "0" >
  7122. <productMenu id="protocol"
  7123. type="2" >
  7124. </productMenu>
  7125. <productMenu id="alexa"
  7126. type="0" >
  7127. </productMenu>
  7128. <productMenu id="ota"
  7129. type="0"
  7130. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  7131. size="1150234" >
  7132. </productMenu>
  7133. <productMenu id="wa"
  7134. type="1" >
  7135. </productMenu>
  7136. <productMenu id="sip"
  7137. type="1" >
  7138. </productMenu>
  7139. <productMenu id="meshIntercom"
  7140. type="30" >
  7141. </productMenu>
  7142. <productMenu id="meshIntercom+"
  7143. type="3"
  7144. url="2" >
  7145. <productMenuType version="2.5"
  7146. type="2"
  7147. />
  7148. </productMenu>
  7149. <productMenu id="waveIntercom"
  7150. type="1" >
  7151. <productMenuType version="2.5"
  7152. type="0"
  7153. />
  7154. </productMenu>
  7155. <productMenu id="bluetoothIntercom"
  7156. type="1" >
  7157. </productMenu>
  7158. <productMenu id="phone"
  7159. type="1" >
  7160. </productMenu>
  7161. <productMenu id="music"
  7162. type="1" >
  7163. </productMenu>
  7164. <productMenu id="fmradio"
  7165. type="1" >
  7166. </productMenu>
  7167. <productMenu id="deviceSetting"
  7168. type="1"
  7169. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  7170. <productMenuURL version="2.5"
  7171. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  7172. />
  7173. </productMenu>
  7174. <productMenu id="quickGuide"
  7175. type="1"
  7176. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  7177. size="934KB" >
  7178. </productMenu>
  7179. <productMenu id="userGuide"
  7180. type="1"
  7181. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  7182. size="1.14MB" >
  7183. </productMenu>
  7184. <productMenu id="videoGuide"
  7185. type="0"
  7186. url=""
  7187. size="3.41MB" >
  7188. </productMenu>
  7189. <productMenu id="volume"
  7190. type="11" >
  7191. </productMenu>
  7192. <productMenu id="battery"
  7193. type="1" >
  7194. </productMenu>
  7195. <productID id="321C"
  7196. />
  7197. <productGroupable type="0"
  7198. />
  7199. </product>
  7200. <product id="BMW_HELMET_II_U1"
  7201. name="BMW HELMET II U1"
  7202. series="50"
  7203. latestVersion="1.0"
  7204. show = "0" >
  7205. <productMenu id="protocol"
  7206. type="2" >
  7207. </productMenu>
  7208. <productMenu id="alexa"
  7209. type="0" >
  7210. </productMenu>
  7211. <productMenu id="sip"
  7212. type="1" >
  7213. </productMenu>
  7214. <productMenu id="meshIntercom"
  7215. type="20" >
  7216. </productMenu>
  7217. <productMenu id="bluetoothIntercom"
  7218. type="1" >
  7219. </productMenu>
  7220. <productMenu id="bluetoothIntercom2"
  7221. type="1" >
  7222. </productMenu>
  7223. <productMenu id="phone"
  7224. type="1" >
  7225. </productMenu>
  7226. <productMenu id="music"
  7227. type="1" >
  7228. </productMenu>
  7229. <productMenu id="fmradio"
  7230. type="1" >
  7231. </productMenu>
  7232. <productMenu id="deviceSetting"
  7233. type="1"
  7234. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  7235. </productMenu>
  7236. <productMenu id="quickGuide"
  7237. type="1"
  7238. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  7239. size="934KB" >
  7240. </productMenu>
  7241. <productMenu id="userGuide"
  7242. type="1"
  7243. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  7244. size="1.14MB" >
  7245. </productMenu>
  7246. <productMenu id="volume"
  7247. type="11" >
  7248. </productMenu>
  7249. <productMenu id="battery"
  7250. type="1" >
  7251. </productMenu>
  7252. <productID id="3260"
  7253. />
  7254. <productGroupable type="0"
  7255. />
  7256. </product>
  7257. <product id="OUTRUSHR"
  7258. name="CX935"
  7259. series="Helmet"
  7260. latestVersion="1.1.3"
  7261. show = "-1" >
  7262. <productMenu id="protocol"
  7263. type="0">
  7264. </productMenu>
  7265. <productMenu id="sip"
  7266. type="1" >
  7267. </productMenu>
  7268. <productMenu id="bluetoothIntercom"
  7269. type="1" >
  7270. </productMenu>
  7271. <productMenu id="phone"
  7272. type="2" >
  7273. </productMenu>
  7274. <productMenu id="fmradio"
  7275. type="3" >
  7276. </productMenu>
  7277. <productMenu id="deviceSetting"
  7278. type="1"
  7279. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  7280. </productMenu>
  7281. <productMenu id="userGuide"
  7282. type="1"
  7283. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  7284. size="660KB" >
  7285. </productMenu>
  7286. <productID id="5436"
  7287. />
  7288. <productGroupable type="0"
  7289. />
  7290. </product>
  7291. <product id="LSE_01"
  7292. name="LSE-01"
  7293. series="SF"
  7294. latestVersion="1.2.3"
  7295. show = "0" >
  7296. <productMenu id="protocol"
  7297. type="1"
  7298. url="3">
  7299. </productMenu>
  7300. <productMenu id="sip"
  7301. type="1" >
  7302. </productMenu>
  7303. <productMenu id="bluetoothIntercom"
  7304. type="1" >
  7305. </productMenu>
  7306. <productMenu id="phone"
  7307. type="1" >
  7308. </productMenu>
  7309. <productMenu id="music"
  7310. type="1" >
  7311. </productMenu>
  7312. <productMenu id="fmradio"
  7313. type="1" >
  7314. </productMenu>
  7315. <productMenu id="deviceSetting"
  7316. type="1"
  7317. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7318. <productMenuURL version="1.1"
  7319. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  7320. />
  7321. <productMenuURL version="1.0"
  7322. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  7323. />
  7324. </productMenu>
  7325. <productMenu id="quickGuide"
  7326. type="1"
  7327. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  7328. size="607KB" >
  7329. </productMenu>
  7330. <productMenu id="userGuide"
  7331. type="1"
  7332. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  7333. size="1.91MB" >
  7334. </productMenu>
  7335. <productMenu id="volume"
  7336. type="4" >
  7337. </productMenu>
  7338. <productID id="5416"
  7339. />
  7340. <productGroupable type="0"
  7341. />
  7342. </product>
  7343. <product id="AGV_ARK"
  7344. name="AGV ARK"
  7345. series="SF"
  7346. latestVersion="1.0.3"
  7347. show = "0" >
  7348. <productMenu id="protocol"
  7349. type="1"
  7350. url="3">
  7351. </productMenu>
  7352. <productMenu id="sip"
  7353. type="1" >
  7354. </productMenu>
  7355. <productMenu id="bluetoothIntercom"
  7356. type="1" >
  7357. </productMenu>
  7358. <productMenu id="phone"
  7359. type="1" >
  7360. </productMenu>
  7361. <productMenu id="music"
  7362. type="1" >
  7363. </productMenu>
  7364. <productMenu id="fmradio"
  7365. type="1" >
  7366. </productMenu>
  7367. <productMenu id="deviceSetting"
  7368. type="1"
  7369. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7370. </productMenu>
  7371. <productMenu id="quickGuide"
  7372. type="1"
  7373. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  7374. size="607KB" >
  7375. </productMenu>
  7376. <productMenu id="userGuide"
  7377. type="1"
  7378. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  7379. size="1.91MB" >
  7380. </productMenu>
  7381. <productMenu id="volume"
  7382. type="4" >
  7383. </productMenu>
  7384. <productID id="5420"
  7385. />
  7386. <productGroupable type="0"
  7387. />
  7388. </product>
  7389. <product id="KLIM_KRIOS"
  7390. name="KLIM Krios"
  7391. series="10"
  7392. latestVersion="1.1.2"
  7393. show = "0" >
  7394. <productMenu id="protocol"
  7395. type="0">
  7396. </productMenu>
  7397. <productMenu id="sip"
  7398. type="1" >
  7399. </productMenu>
  7400. <productMenu id="bluetoothIntercom"
  7401. type="1" >
  7402. </productMenu>
  7403. <productMenu id="phone"
  7404. type="2" >
  7405. </productMenu>
  7406. <productMenu id="fmradio"
  7407. type="3" >
  7408. </productMenu>
  7409. <productMenu id="deviceSetting"
  7410. type="1"
  7411. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  7412. <productMenuURL version="1.0"
  7413. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  7414. />
  7415. </productMenu>
  7416. <productMenu id="quickGuide"
  7417. type="1"
  7418. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  7419. size="649KB" >
  7420. </productMenu>
  7421. <productMenu id="userGuide"
  7422. type="1"
  7423. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  7424. size="1.43MB" >
  7425. </productMenu>
  7426. <productID id="5910"
  7427. />
  7428. <productGroupable type="0"
  7429. />
  7430. </product>
  7431. <product id="POLARIS_SLINGSHOT"
  7432. name="Polaris Slingshot"
  7433. series="10"
  7434. latestVersion="1.1.2"
  7435. show = "0" >
  7436. <productMenu id="protocol"
  7437. type="0">
  7438. </productMenu>
  7439. <productMenu id="sip"
  7440. type="1" >
  7441. </productMenu>
  7442. <productMenu id="bluetoothIntercom"
  7443. type="1" >
  7444. </productMenu>
  7445. <productMenu id="phone"
  7446. type="2" >
  7447. </productMenu>
  7448. <productMenu id="fmradio"
  7449. type="3" >
  7450. </productMenu>
  7451. <productMenu id="deviceSetting"
  7452. type="1"
  7453. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  7454. <productMenuURL version="1.0"
  7455. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  7456. />
  7457. </productMenu>
  7458. <productMenu id="quickGuide"
  7459. type="1"
  7460. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  7461. size="689KB" >
  7462. </productMenu>
  7463. <productMenu id="userGuide"
  7464. type="1"
  7465. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  7466. size="1.43MB" >
  7467. </productMenu>
  7468. <productID id="5920"
  7469. />
  7470. <productGroupable type="0"
  7471. />
  7472. </product>
  7473. <product id="DWO6"
  7474. name="SEDICI DWO6-PRO"
  7475. series="10"
  7476. latestVersion="1.0.2"
  7477. show = "0" >
  7478. <productMenu id="protocol"
  7479. type="0">
  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="2" >
  7489. </productMenu>
  7490. <productMenu id="fmradio"
  7491. type="3" >
  7492. </productMenu>
  7493. <productMenu id="deviceSetting"
  7494. type="1"
  7495. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  7496. </productMenu>
  7497. <productMenu id="quickGuide"
  7498. type="1"
  7499. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  7500. size="529KB" >
  7501. </productMenu>
  7502. <productMenu id="userGuide"
  7503. type="1"
  7504. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  7505. size="4.09MB" >
  7506. </productMenu>
  7507. <productID id="6112"
  7508. />
  7509. <productGroupable type="0"
  7510. />
  7511. </product>
  7512. <product id="DWO6A"
  7513. name="SEDICI DWO-6"
  7514. series="10"
  7515. latestVersion="1.0.2"
  7516. show = "0" >
  7517. <productMenu id="protocol"
  7518. type="0">
  7519. </productMenu>
  7520. <productMenu id="sip"
  7521. type="1" >
  7522. </productMenu>
  7523. <productMenu id="bluetoothIntercom"
  7524. type="1" >
  7525. </productMenu>
  7526. <productMenu id="phone"
  7527. type="2" >
  7528. </productMenu>
  7529. <productMenu id="fmradio"
  7530. type="3" >
  7531. </productMenu>
  7532. <productMenu id="deviceSetting"
  7533. type="1"
  7534. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  7535. </productMenu>
  7536. <productMenu id="quickGuide"
  7537. type="1"
  7538. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  7539. size="522KB" >
  7540. </productMenu>
  7541. <productMenu id="userGuide"
  7542. type="1"
  7543. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  7544. size="2.71MB" >
  7545. </productMenu>
  7546. <productID id="6114"
  7547. />
  7548. <productGroupable type="0"
  7549. />
  7550. </product>
  7551. <product id="3SPLUS"
  7552. name="ZILL"
  7553. series="3"
  7554. latestVersion="1.0.4"
  7555. show = "0" >
  7556. <productMenu id="protocol"
  7557. type="0">
  7558. </productMenu>
  7559. <productMenu id="sip"
  7560. type="1" >
  7561. </productMenu>
  7562. <productMenu id="bluetoothIntercom"
  7563. type="1" >
  7564. </productMenu>
  7565. <productMenu id="deviceSetting"
  7566. type="1"
  7567. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  7568. </productMenu>
  7569. <productMenu id="quickGuide"
  7570. type="1"
  7571. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  7572. size="842KB" >
  7573. </productMenu>
  7574. <productMenu id="userGuide"
  7575. type="1"
  7576. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  7577. size="1.02MB" >
  7578. </productMenu>
  7579. <productID id="6335"
  7580. />
  7581. <productGroupable type="0"
  7582. />
  7583. </product>
  7584. <product id="HD50S"
  7585. name="Boom! Audio 30K"
  7586. series="30"
  7587. latestVersion="3.4"
  7588. show = "0" >
  7589. <productMenu id="protocol"
  7590. type="1"
  7591. url="0">
  7592. </productMenu>
  7593. <productMenu id="wa"
  7594. type="0" >
  7595. </productMenu>
  7596. <productMenu id="sip"
  7597. type="1" >
  7598. </productMenu>
  7599. <productMenu id="meshIntercom"
  7600. type="20" >
  7601. <productMenuType version="2.9.9"
  7602. type="10"
  7603. />
  7604. </productMenu>
  7605. <productMenu id="bluetoothIntercom"
  7606. type="1" >
  7607. </productMenu>
  7608. <productMenu id="phone"
  7609. type="1" >
  7610. </productMenu>
  7611. <productMenu id="music"
  7612. type="1" >
  7613. </productMenu>
  7614. <productMenu id="fmradio"
  7615. type="1" >
  7616. </productMenu>
  7617. <productMenu id="deviceSetting"
  7618. type="1"
  7619. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  7620. <productMenuURL version="3.2"
  7621. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  7622. />
  7623. <productMenuURL version="3.0"
  7624. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  7625. />
  7626. <productMenuURL version="2.2"
  7627. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  7628. />
  7629. </productMenu>
  7630. <productMenu id="quickGuide"
  7631. type="1"
  7632. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  7633. size="1.06MB" >
  7634. </productMenu>
  7635. <productMenu id="userGuide"
  7636. type="1"
  7637. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  7638. size="3.15MB" >
  7639. </productMenu>
  7640. <productMenu id="volume"
  7641. type="1" >
  7642. </productMenu>
  7643. <productID id="3112"
  7644. />
  7645. <productGroupable type="0"
  7646. />
  7647. </product>
  7648. <product id="HD50S"
  7649. name="Boom! Audio N02"
  7650. series="30"
  7651. latestVersion="3.1"
  7652. show = "0" >
  7653. <productMenu id="protocol"
  7654. type="1"
  7655. url="0">
  7656. </productMenu>
  7657. <productMenu id="wa"
  7658. type="2" >
  7659. </productMenu>
  7660. <productMenu id="sip"
  7661. type="1" >
  7662. </productMenu>
  7663. <productMenu id="meshIntercom"
  7664. type="20" >
  7665. <productMenuType version="2.9.9"
  7666. type="10"
  7667. />
  7668. </productMenu>
  7669. <productMenu id="bluetoothIntercom"
  7670. type="1" >
  7671. </productMenu>
  7672. <productMenu id="phone"
  7673. type="1" >
  7674. </productMenu>
  7675. <productMenu id="music"
  7676. type="1" >
  7677. </productMenu>
  7678. <productMenu id="fmradio"
  7679. type="1" >
  7680. </productMenu>
  7681. <productMenu id="deviceSetting"
  7682. type="1"
  7683. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  7684. <productMenuURL version="2.2"
  7685. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  7686. />
  7687. </productMenu>
  7688. <productMenu id="quickGuide"
  7689. type="1"
  7690. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  7691. size="1.06MB" >
  7692. </productMenu>
  7693. <productMenu id="userGuide"
  7694. type="1"
  7695. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  7696. size="3.15MB" >
  7697. </productMenu>
  7698. <productMenu id="volume"
  7699. type="2" >
  7700. </productMenu>
  7701. <productID id="3114"
  7702. />
  7703. <productGroupable type="0"
  7704. />
  7705. </product>
  7706. <product id="HD50S"
  7707. name="Boom Audio 20S"
  7708. series="50"
  7709. latestVersion="2.5.2"
  7710. show = "0" >
  7711. <productMenu id="protocol"
  7712. type="0">
  7713. </productMenu>
  7714. <productMenu id="sip"
  7715. type="1" >
  7716. <productMenuType version="1.0"
  7717. type="0"
  7718. />
  7719. </productMenu>
  7720. <productMenu id="bluetoothIntercom"
  7721. type="1" >
  7722. <productMenuType version="1.0"
  7723. type="0"
  7724. />
  7725. </productMenu>
  7726. <productMenu id="intercomSetting"
  7727. type="1" >
  7728. </productMenu>
  7729. <productMenu id="phone"
  7730. type="2" >
  7731. </productMenu>
  7732. <productMenu id="fmradio"
  7733. type="3" >
  7734. </productMenu>
  7735. <productMenu id="deviceSetting"
  7736. type="1"
  7737. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  7738. <productMenuURL version="2.4"
  7739. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7740. />
  7741. <productMenuURL version="1.5"
  7742. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7743. />
  7744. <productMenuURL version="1.4.1"
  7745. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7746. />
  7747. <productMenuURL version="1.1"
  7748. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7749. />
  7750. <productMenuURL version="1.0"
  7751. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7752. />
  7753. </productMenu>
  7754. <productMenu id="quickGuide"
  7755. type="1"
  7756. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  7757. size="264KB" >
  7758. </productMenu>
  7759. <productMenu id="userGuide"
  7760. type="1"
  7761. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  7762. size="3.09MB" >
  7763. </productMenu>
  7764. <productMenu id="connectGuide"
  7765. type="1"
  7766. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7767. size="1.12MB" >
  7768. </productMenu>
  7769. <productID id="4210"
  7770. />
  7771. <productProductKey key="11"
  7772. />
  7773. <productID id="4230"
  7774. />
  7775. <productProductKey key="11"
  7776. />
  7777. <productGroupable type="1"
  7778. />
  7779. </product>
  7780. <product id="HD50S"
  7781. name="Boom Audio 20S EVO"
  7782. series="50"
  7783. latestVersion="2.5.2"
  7784. show = "0" >
  7785. <productMenu id="protocol"
  7786. type="0">
  7787. </productMenu>
  7788. <productMenu id="sip"
  7789. type="1" >
  7790. <productMenuType version="1.0"
  7791. type="0"
  7792. />
  7793. </productMenu>
  7794. <productMenu id="bluetoothIntercom"
  7795. type="1" >
  7796. <productMenuType version="1.0"
  7797. type="0"
  7798. />
  7799. </productMenu>
  7800. <productMenu id="intercomSetting"
  7801. type="1" >
  7802. </productMenu>
  7803. <productMenu id="phone"
  7804. type="2" >
  7805. </productMenu>
  7806. <productMenu id="fmradio"
  7807. type="3" >
  7808. </productMenu>
  7809. <productMenu id="deviceSetting"
  7810. type="1"
  7811. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  7812. <productMenuURL version="2.4"
  7813. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7814. />
  7815. <productMenuURL version="1.5"
  7816. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7817. />
  7818. <productMenuURL version="1.4.1"
  7819. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7820. />
  7821. <productMenuURL version="1.1"
  7822. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7823. />
  7824. <productMenuURL version="1.0"
  7825. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7826. />
  7827. </productMenu>
  7828. <productMenu id="quickGuide"
  7829. type="1"
  7830. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  7831. size="321KB" >
  7832. </productMenu>
  7833. <productMenu id="userGuide"
  7834. type="1"
  7835. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  7836. size="2.46MB" >
  7837. </productMenu>
  7838. <productID id="4230"
  7839. />
  7840. <productProductKey key="27"
  7841. />
  7842. <productGroupable type="1"
  7843. />
  7844. </product>
  7845. <product id="HD50S"
  7846. name="Boom! Audio 10S"
  7847. series="50"
  7848. latestVersion="1.1.3"
  7849. show = "0" >
  7850. <productMenu id="protocol"
  7851. type="0">
  7852. </productMenu>
  7853. <productMenu id="sip"
  7854. type="1" >
  7855. </productMenu>
  7856. <productMenu id="bluetoothIntercom"
  7857. type="1" >
  7858. </productMenu>
  7859. <productMenu id="phone"
  7860. type="2" >
  7861. </productMenu>
  7862. <productMenu id="fmradio"
  7863. type="3" >
  7864. </productMenu>
  7865. <productMenu id="deviceSetting"
  7866. type="1"
  7867. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  7868. </productMenu>
  7869. <productMenu id="quickGuide"
  7870. type="1"
  7871. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  7872. size="538KB" >
  7873. </productMenu>
  7874. <productMenu id="userGuide"
  7875. type="1"
  7876. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  7877. size="1.55MB" >
  7878. </productMenu>
  7879. <productID id="5532"
  7880. />
  7881. <productGroupable type="0"
  7882. />
  7883. </product>
  7884. <product id="HD50S"
  7885. name="Boom! Audio N01 10R"
  7886. series="50"
  7887. latestVersion="1.1.3"
  7888. show = "0" >
  7889. <productMenu id="protocol"
  7890. type="0">
  7891. </productMenu>
  7892. <productMenu id="sip"
  7893. type="1" >
  7894. </productMenu>
  7895. <productMenu id="bluetoothIntercom"
  7896. type="1" >
  7897. </productMenu>
  7898. <productMenu id="phone"
  7899. type="2" >
  7900. </productMenu>
  7901. <productMenu id="fmradio"
  7902. type="3" >
  7903. </productMenu>
  7904. <productMenu id="deviceSetting"
  7905. type="1"
  7906. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7907. </productMenu>
  7908. <productMenu id="quickGuide"
  7909. type="1"
  7910. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  7911. size="766KB" >
  7912. </productMenu>
  7913. <productMenu id="userGuide"
  7914. type="1"
  7915. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  7916. size="1.45MB" >
  7917. </productMenu>
  7918. <productID id="5522"
  7919. />
  7920. <productGroupable type="0"
  7921. />
  7922. </product>
  7923. <product id="HD50S"
  7924. name="OUTRUSH-R N03"
  7925. series="50"
  7926. latestVersion="1.2.1"
  7927. show = "-1" >
  7928. <productMenu id="protocol"
  7929. type="0">
  7930. </productMenu>
  7931. <productMenu id="sip"
  7932. type="1" >
  7933. </productMenu>
  7934. <productMenu id="bluetoothIntercom"
  7935. type="1" >
  7936. </productMenu>
  7937. <productMenu id="phone"
  7938. type="2" >
  7939. </productMenu>
  7940. <productMenu id="fmradio"
  7941. type="3" >
  7942. </productMenu>
  7943. <productMenu id="deviceSetting"
  7944. type="1"
  7945. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  7946. </productMenu>
  7947. <productMenu id="userGuide"
  7948. type="1"
  7949. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  7950. size="660KB" >
  7951. </productMenu>
  7952. <productID id="5434"
  7953. />
  7954. <productGroupable type="0"
  7955. />
  7956. </product>
  7957. <product id="HD50S"
  7958. name="OUTRUSH-R N03"
  7959. series="50"
  7960. latestVersion="2.0"
  7961. show = "0" >
  7962. <productMenu id="protocol"
  7963. type="3" >
  7964. </productMenu>
  7965. <productMenu id="sip"
  7966. type="1" >
  7967. </productMenu>
  7968. <productMenu id="bluetoothIntercom"
  7969. type="1" >
  7970. </productMenu>
  7971. <productMenu id="phone"
  7972. type="1" >
  7973. </productMenu>
  7974. <productMenu id="fmradio"
  7975. type="1" >
  7976. </productMenu>
  7977. <productMenu id="deviceSetting"
  7978. type="1"
  7979. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  7980. </productMenu>
  7981. <productMenu id="userGuide"
  7982. type="1"
  7983. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  7984. size="1.14MB" >
  7985. </productMenu>
  7986. <productID id="5441"
  7987. />
  7988. <productGroupable type="0"
  7989. />
  7990. </product>
  7991. <product id="5R"
  7992. name="5R"
  7993. series="5"
  7994. latestVersion="1.0.1"
  7995. show = "1" >
  7996. <productMenu id="protocol"
  7997. type="3" >
  7998. </productMenu>
  7999. <productMenu id="sip"
  8000. type="1" >
  8001. </productMenu>
  8002. <productMenu id="bluetoothIntercom"
  8003. type="1" >
  8004. </productMenu>
  8005. <productMenu id="phone"
  8006. type="1" >
  8007. </productMenu>
  8008. <productMenu id="fmradio"
  8009. type="1" >
  8010. </productMenu>
  8011. <productMenu id="deviceSetting"
  8012. type="1"
  8013. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  8014. </productMenu>
  8015. <productMenu id="quickGuide"
  8016. type="0"
  8017. url=""
  8018. size="934KB" >
  8019. </productMenu>
  8020. <productMenu id="userGuide"
  8021. type="1"
  8022. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  8023. size="1.14MB" >
  8024. </productMenu>
  8025. <productMenu id="connectGuide"
  8026. type="1"
  8027. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  8028. size="1.12MB" >
  8029. </productMenu>
  8030. <productID id="5591"
  8031. />
  8032. <productGroupable type="0"
  8033. />
  8034. </product>
  8035. <product id="5R"
  8036. name="5R LITE"
  8037. series="5"
  8038. latestVersion="1.0.1"
  8039. show = "1" >
  8040. <productMenu id="protocol"
  8041. type="3" >
  8042. </productMenu>
  8043. <productMenu id="sip"
  8044. type="1" >
  8045. </productMenu>
  8046. <productMenu id="bluetoothIntercom"
  8047. type="1" >
  8048. </productMenu>
  8049. <productMenu id="phone"
  8050. type="1" >
  8051. </productMenu>
  8052. <productMenu id="fmradio"
  8053. type="1" >
  8054. </productMenu>
  8055. <productMenu id="deviceSetting"
  8056. type="1"
  8057. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  8058. </productMenu>
  8059. <productMenu id="quickGuide"
  8060. type="0"
  8061. url=""
  8062. size="934KB" >
  8063. </productMenu>
  8064. <productMenu id="userGuide"
  8065. type="1"
  8066. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  8067. size="1.14MB" >
  8068. </productMenu>
  8069. <productMenu id="connectGuide"
  8070. type="1"
  8071. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  8072. size="1.12MB" >
  8073. </productMenu>
  8074. <productID id="5592"
  8075. />
  8076. <productGroupable type="0"
  8077. />
  8078. </product>
  8079. <product id="50RLE"
  8080. name="50R LE"
  8081. series="50"
  8082. latestVersion="1.1"
  8083. show = "0" >
  8084. <productMenu id="protocol"
  8085. type="2" >
  8086. </productMenu>
  8087. <productMenu id="alexa"
  8088. type="0" >
  8089. </productMenu>
  8090. <productMenu id="sip"
  8091. type="1" >
  8092. </productMenu>
  8093. <productMenu id="meshIntercom"
  8094. type="30" >
  8095. </productMenu>
  8096. <productMenu id="meshIntercom+"
  8097. type="3"
  8098. url="2" >
  8099. <productMenuType version="1.0.9"
  8100. type="2"
  8101. />
  8102. </productMenu>
  8103. <productMenu id="waveIntercom"
  8104. type="1" >
  8105. <productMenuType version="1.0.9"
  8106. type="0"
  8107. />
  8108. </productMenu>
  8109. <productMenu id="bluetoothIntercom"
  8110. type="1" >
  8111. </productMenu>
  8112. <productMenu id="phone"
  8113. type="1" >
  8114. </productMenu>
  8115. <productMenu id="music"
  8116. type="1" >
  8117. </productMenu>
  8118. <productMenu id="fmradio"
  8119. type="0" >
  8120. </productMenu>
  8121. <productMenu id="deviceSetting"
  8122. type="1"
  8123. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  8124. <productMenuURL version="1.0.9"
  8125. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  8126. />
  8127. </productMenu>
  8128. <productMenu id="quickGuide"
  8129. type="0"
  8130. url=""
  8131. size="344KB" >
  8132. </productMenu>
  8133. <productMenu id="userGuide"
  8134. type="0"
  8135. url=""
  8136. size="3.41MB" >
  8137. </productMenu>
  8138. <productMenu id="volume"
  8139. type="11" >
  8140. </productMenu>
  8141. <productMenu id="battery"
  8142. type="1" >
  8143. </productMenu>
  8144. <productID id="3223"
  8145. />
  8146. <productGroupable type="0"
  8147. />
  8148. </product>
  8149. <product id="5RLOUIS"
  8150. name="5R LOUIS EDITION"
  8151. series="5"
  8152. latestVersion="1.0"
  8153. show = "-1" >
  8154. <productMenu id="protocol"
  8155. type="3" >
  8156. </productMenu>
  8157. <productMenu id="sip"
  8158. type="1" >
  8159. </productMenu>
  8160. <productMenu id="bluetoothIntercom"
  8161. type="1" >
  8162. </productMenu>
  8163. <productMenu id="phone"
  8164. type="1" >
  8165. </productMenu>
  8166. <productMenu id="fmradio"
  8167. type="1" >
  8168. </productMenu>
  8169. <productMenu id="deviceSetting"
  8170. type="1"
  8171. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  8172. </productMenu>
  8173. <productMenu id="quickGuide"
  8174. type="0"
  8175. url=""
  8176. size="934KB" >
  8177. </productMenu>
  8178. <productMenu id="userGuide"
  8179. type="0"
  8180. url=""
  8181. size="1.14MB" >
  8182. </productMenu>
  8183. <productID id="5597"
  8184. />
  8185. <productGroupable type="0"
  8186. />
  8187. </product>
  8188. <product id="5S"
  8189. name="Ridekont 5S"
  8190. series="5"
  8191. latestVersion="2.3"
  8192. show = "-1" >
  8193. <productMenu id="protocol"
  8194. type="3" >
  8195. </productMenu>
  8196. <productMenu id="sip"
  8197. type="1" >
  8198. </productMenu>
  8199. <productMenu id="bluetoothIntercom"
  8200. type="1" >
  8201. </productMenu>
  8202. <productMenu id="phone"
  8203. type="1" >
  8204. </productMenu>
  8205. <productMenu id="fmradio"
  8206. type="0" >
  8207. </productMenu>
  8208. <productMenu id="deviceSetting"
  8209. type="1"
  8210. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  8211. </productMenu>
  8212. <productMenu id="quickGuide"
  8213. type="0"
  8214. url=""
  8215. size="934KB" >
  8216. </productMenu>
  8217. <productMenu id="userGuide"
  8218. type="1"
  8219. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  8220. size="1.14MB" >
  8221. </productMenu>
  8222. <productID id="5589"
  8223. />
  8224. <productGroupable type="0"
  8225. />
  8226. </product>
  8227. <product id="5R"
  8228. name="Ridekont 5R"
  8229. series="5"
  8230. latestVersion="1.0"
  8231. show = "0" >
  8232. <productMenu id="protocol"
  8233. type="3" >
  8234. </productMenu>
  8235. <productMenu id="sip"
  8236. type="1" >
  8237. </productMenu>
  8238. <productMenu id="bluetoothIntercom"
  8239. type="1" >
  8240. </productMenu>
  8241. <productMenu id="phone"
  8242. type="1" >
  8243. </productMenu>
  8244. <productMenu id="fmradio"
  8245. type="1" >
  8246. </productMenu>
  8247. <productMenu id="deviceSetting"
  8248. type="1"
  8249. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  8250. </productMenu>
  8251. <productMenu id="quickGuide"
  8252. type="1"
  8253. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  8254. size="934KB" >
  8255. </productMenu>
  8256. <productMenu id="userGuide"
  8257. type="1"
  8258. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  8259. size="1.14MB" >
  8260. </productMenu>
  8261. <productID id="5593"
  8262. />
  8263. <productGroupable type="0"
  8264. />
  8265. </product>
  8266. <product id="5R"
  8267. name="Ridekont 5R LITE"
  8268. series="5"
  8269. latestVersion="1.0"
  8270. show = "0" >
  8271. <productMenu id="protocol"
  8272. type="3" >
  8273. </productMenu>
  8274. <productMenu id="sip"
  8275. type="1" >
  8276. </productMenu>
  8277. <productMenu id="bluetoothIntercom"
  8278. type="1" >
  8279. </productMenu>
  8280. <productMenu id="phone"
  8281. type="1" >
  8282. </productMenu>
  8283. <productMenu id="fmradio"
  8284. type="1" >
  8285. </productMenu>
  8286. <productMenu id="deviceSetting"
  8287. type="1"
  8288. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  8289. </productMenu>
  8290. <productMenu id="quickGuide"
  8291. type="0"
  8292. url=""
  8293. size="934KB" >
  8294. </productMenu>
  8295. <productMenu id="userGuide"
  8296. type="1"
  8297. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  8298. size="1.14MB" >
  8299. </productMenu>
  8300. <productID id="5594"
  8301. />
  8302. <productGroupable type="0"
  8303. />
  8304. </product>
  8305. <product id="C30"
  8306. name="SENA C30"
  8307. series="C"
  8308. latestVersion="1.1.3"
  8309. latestVersionVoicePrompt="0.11"
  8310. show = "1" >
  8311. <productMenu id="protocol"
  8312. type="2" >
  8313. </productMenu>
  8314. <productMenu id="alexa"
  8315. type="0" >
  8316. </productMenu>
  8317. <productMenu id="ota"
  8318. type="2" >
  8319. <otaPackages>
  8320. <package
  8321. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.1.3-build2.img"
  8322. size="3144148"
  8323. />
  8324. </otaPackages>
  8325. </productMenu>
  8326. <productMenu id="wa"
  8327. type="0" >
  8328. </productMenu>
  8329. <productMenu id="meshIntercom"
  8330. type="30" >
  8331. </productMenu>
  8332. <productMenu id="meshIntercom+"
  8333. type="3"
  8334. url="2" >
  8335. <productMenuType version="1.0.9"
  8336. type="2"
  8337. />
  8338. </productMenu>
  8339. <productMenu id="phone"
  8340. type="1" >
  8341. </productMenu>
  8342. <productMenu id="music"
  8343. type="1" >
  8344. </productMenu>
  8345. <productMenu id="musicSharing"
  8346. type="0" >
  8347. </productMenu>
  8348. <productMenu id="deviceSetting"
  8349. type="1"
  8350. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_06_zh_rCN.xml" >
  8351. <productMenuURL version="1.0.9"
  8352. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  8353. />
  8354. </productMenu>
  8355. <productMenu id="quickGuide"
  8356. type="1"
  8357. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  8358. size="1.12MB" >
  8359. </productMenu>
  8360. <productMenu id="userGuide"
  8361. type="0"
  8362. url=""
  8363. size="2.0MB" >
  8364. </productMenu>
  8365. <productMenu id="videoGuide"
  8366. type="0"
  8367. url=""
  8368. size="3.41MB" >
  8369. </productMenu>
  8370. <productMenu id="volume"
  8371. type="12" >
  8372. </productMenu>
  8373. <productMenu id="battery"
  8374. type="1" >
  8375. </productMenu>
  8376. <productID id="683A"
  8377. />
  8378. <productGroupable type="0"
  8379. />
  8380. </product>
  8381. <product id="C20"
  8382. name="C20"
  8383. series="5"
  8384. latestVersion="1.0"
  8385. show = "0" >
  8386. <productMenu id="protocol"
  8387. type="3" >
  8388. </productMenu>
  8389. <productMenu id="sip"
  8390. type="1" >
  8391. </productMenu>
  8392. <productMenu id="bluetoothIntercom"
  8393. type="1" >
  8394. </productMenu>
  8395. <productMenu id="phone"
  8396. type="1" >
  8397. </productMenu>
  8398. <productMenu id="deviceSetting"
  8399. type="1"
  8400. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  8401. </productMenu>
  8402. <productMenu id="quickGuide"
  8403. type="1"
  8404. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  8405. size="934KB" >
  8406. </productMenu>
  8407. <productMenu id="userGuide"
  8408. type="1"
  8409. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  8410. size="1.14MB" >
  8411. </productMenu>
  8412. <productID id="3701"
  8413. />
  8414. <productGroupable type="0"
  8415. />
  8416. </product>
  8417. <product id="C10"
  8418. name="C10"
  8419. series="5"
  8420. latestVersion="1.4.1"
  8421. show = "0" >
  8422. <productMenu id="protocol"
  8423. type="3" >
  8424. </productMenu>
  8425. <productMenu id="sip"
  8426. type="1" >
  8427. </productMenu>
  8428. <productMenu id="bluetoothIntercom"
  8429. type="1" >
  8430. </productMenu>
  8431. <productMenu id="phone"
  8432. type="1" >
  8433. </productMenu>
  8434. <productMenu id="fmradio"
  8435. type="0" >
  8436. </productMenu>
  8437. <productMenu id="deviceSetting"
  8438. type="1"
  8439. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  8440. </productMenu>
  8441. <productMenu id="userGuide"
  8442. type="1"
  8443. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  8444. size="1.14MB" >
  8445. </productMenu>
  8446. <productID id="5595"
  8447. />
  8448. <productGroupable type="0"
  8449. />
  8450. </product>
  8451. <product id="J30"
  8452. name="J30"
  8453. series="J"
  8454. latestVersion="1.2"
  8455. latestVersionVoicePrompt="0.13"
  8456. show = "0" >
  8457. <productMenu id="protocol"
  8458. type="2" >
  8459. </productMenu>
  8460. <productMenu id="alexa"
  8461. type="0" >
  8462. </productMenu>
  8463. <productMenu id="ota"
  8464. type="2" >
  8465. <otaPackages>
  8466. <package
  8467. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2-build1.img"
  8468. size="3144148"
  8469. />
  8470. </otaPackages>
  8471. </productMenu>
  8472. <productMenu id="wa"
  8473. type="0" >
  8474. </productMenu>
  8475. <productMenu id="meshIntercom"
  8476. type="30" >
  8477. </productMenu>
  8478. <productMenu id="meshIntercom+"
  8479. type="3"
  8480. url="2" >
  8481. <productMenuType version="1.0.9"
  8482. type="2"
  8483. />
  8484. </productMenu>
  8485. <productMenu id="waveIntercom"
  8486. type="1" >
  8487. <productMenuType version="1.1.9"
  8488. type="0"
  8489. />
  8490. </productMenu>
  8491. <productMenu id="phone"
  8492. type="1" >
  8493. </productMenu>
  8494. <productMenu id="music"
  8495. type="1" >
  8496. </productMenu>
  8497. <productMenu id="musicSharing"
  8498. type="0" >
  8499. </productMenu>
  8500. <productMenu id="deviceSetting"
  8501. type="1"
  8502. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  8503. <productMenuURL version="1.0.9"
  8504. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  8505. />
  8506. </productMenu>
  8507. <productMenu id="quickGuide"
  8508. type="0"
  8509. url=""
  8510. size="1.12MB" >
  8511. </productMenu>
  8512. <productMenu id="userGuide"
  8513. type="1"
  8514. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  8515. size="2.0MB" >
  8516. </productMenu>
  8517. <productMenu id="videoGuide"
  8518. type="0"
  8519. url=""
  8520. size="3.41MB" >
  8521. </productMenu>
  8522. <productMenu id="volume"
  8523. type="12" >
  8524. </productMenu>
  8525. <productMenu id="battery"
  8526. type="1" >
  8527. </productMenu>
  8528. <productID id="6848"
  8529. />
  8530. <productGroupable type="0"
  8531. />
  8532. </product>
  8533. <product id="J10"
  8534. name="J10"
  8535. series="5"
  8536. latestVersion="1.1.1"
  8537. show = "0" >
  8538. <productMenu id="protocol"
  8539. type="3" >
  8540. </productMenu>
  8541. <productMenu id="sip"
  8542. type="1" >
  8543. </productMenu>
  8544. <productMenu id="bluetoothIntercom"
  8545. type="1" >
  8546. </productMenu>
  8547. <productMenu id="phone"
  8548. type="1" >
  8549. </productMenu>
  8550. <productMenu id="fmradio"
  8551. type="0" >
  8552. </productMenu>
  8553. <productMenu id="deviceSetting"
  8554. type="1"
  8555. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  8556. </productMenu>
  8557. <productMenu id="userGuide"
  8558. type="1"
  8559. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  8560. size="1.14MB" >
  8561. </productMenu>
  8562. <productID id="5598"
  8563. />
  8564. <productGroupable type="0"
  8565. />
  8566. </product>
  8567. <product id="B20"
  8568. name="B20"
  8569. series="B"
  8570. latestVersion="1.1"
  8571. latestVersionVoicePrompt="0.13"
  8572. show = "0" >
  8573. <productMenu id="protocol"
  8574. type="2" >
  8575. </productMenu>
  8576. <productMenu id="alexa"
  8577. type="0" >
  8578. </productMenu>
  8579. <productMenu id="ota"
  8580. type="2" >
  8581. <otaPackages>
  8582. <package
  8583. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1-build0.img"
  8584. size="3144148"
  8585. />
  8586. </otaPackages>
  8587. </productMenu>
  8588. <productMenu id="wa"
  8589. type="0" >
  8590. </productMenu>
  8591. <productMenu id="meshIntercom"
  8592. type="30" >
  8593. </productMenu>
  8594. <productMenu id="phone"
  8595. type="1" >
  8596. </productMenu>
  8597. <productMenu id="music"
  8598. type="1" >
  8599. </productMenu>
  8600. <productMenu id="musicSharing"
  8601. type="0" >
  8602. </productMenu>
  8603. <productMenu id="deviceSetting"
  8604. type="1"
  8605. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  8606. <productMenuURL version="1.0.9"
  8607. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  8608. />
  8609. </productMenu>
  8610. <productMenu id="quickGuide"
  8611. type="0"
  8612. url=""
  8613. size="1.12MB" >
  8614. </productMenu>
  8615. <productMenu id="userGuide"
  8616. type="1"
  8617. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  8618. size="2.0MB" >
  8619. </productMenu>
  8620. <productMenu id="videoGuide"
  8621. type="0"
  8622. url=""
  8623. size="3.41MB" >
  8624. </productMenu>
  8625. <productMenu id="volume"
  8626. type="12" >
  8627. </productMenu>
  8628. <productMenu id="battery"
  8629. type="1" >
  8630. </productMenu>
  8631. <productID id="6847"
  8632. />
  8633. <productGroupable type="0"
  8634. />
  8635. </product>
  8636. <product id="B10"
  8637. name="B10"
  8638. series="5"
  8639. latestVersion="1.2.1"
  8640. show = "0" >
  8641. <productMenu id="protocol"
  8642. type="3" >
  8643. </productMenu>
  8644. <productMenu id="sip"
  8645. type="1" >
  8646. </productMenu>
  8647. <productMenu id="bluetoothIntercom"
  8648. type="1" >
  8649. </productMenu>
  8650. <productMenu id="phone"
  8651. type="1" >
  8652. </productMenu>
  8653. <productMenu id="fmradio"
  8654. type="0" >
  8655. </productMenu>
  8656. <productMenu id="deviceSetting"
  8657. type="1"
  8658. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  8659. </productMenu>
  8660. <productMenu id="userGuide"
  8661. type="1"
  8662. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  8663. size="1.14MB" >
  8664. </productMenu>
  8665. <productID id="5596"
  8666. />
  8667. <productGroupable type="0"
  8668. />
  8669. </product>
  8670. <product id="E30"
  8671. name="E30"
  8672. series="E"
  8673. latestVersion="1.1"
  8674. latestVersionVoicePrompt="0.13"
  8675. show = "0" >
  8676. <productMenu id="protocol"
  8677. type="2" >
  8678. </productMenu>
  8679. <productMenu id="alexa"
  8680. type="0" >
  8681. </productMenu>
  8682. <productMenu id="ota"
  8683. type="2" >
  8684. <otaPackages>
  8685. <package
  8686. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.1-build0.img"
  8687. size="3144148"
  8688. />
  8689. </otaPackages>
  8690. </productMenu>
  8691. <productMenu id="wa"
  8692. type="0" >
  8693. </productMenu>
  8694. <productMenu id="meshIntercom"
  8695. type="30" >
  8696. </productMenu>
  8697. <productMenu id="meshIntercom+"
  8698. type="3"
  8699. url="2" >
  8700. </productMenu>
  8701. <productMenu id="waveIntercom"
  8702. type="1" >
  8703. <productMenuType version="1.0.9"
  8704. type="0"
  8705. />
  8706. </productMenu>
  8707. <productMenu id="phone"
  8708. type="1" >
  8709. </productMenu>
  8710. <productMenu id="music"
  8711. type="1" >
  8712. </productMenu>
  8713. <productMenu id="musicSharing"
  8714. type="0" >
  8715. </productMenu>
  8716. <productMenu id="deviceSetting"
  8717. type="1"
  8718. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  8719. </productMenu>
  8720. <productMenu id="quickGuide"
  8721. type="0"
  8722. url=""
  8723. size="1.12MB" >
  8724. </productMenu>
  8725. <productMenu id="userGuide"
  8726. type="1"
  8727. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  8728. size="2.0MB" >
  8729. </productMenu>
  8730. <productMenu id="videoGuide"
  8731. type="0"
  8732. url=""
  8733. size="3.41MB" >
  8734. </productMenu>
  8735. <productMenu id="volume"
  8736. type="12" >
  8737. </productMenu>
  8738. <productMenu id="battery"
  8739. type="1" >
  8740. </productMenu>
  8741. <productID id="6846"
  8742. />
  8743. <productGroupable type="0"
  8744. />
  8745. </product>
  8746. <product id="ACSRAM"
  8747. name="ACS-RAM"
  8748. series="ACS"
  8749. latestVersion="1.0.5"
  8750. show = "1" >
  8751. <productMenu id="protocol"
  8752. type="3" >
  8753. </productMenu>
  8754. <productMenu id="sip"
  8755. type="1" >
  8756. </productMenu>
  8757. <productMenu id="bluetoothIntercom"
  8758. type="1" >
  8759. </productMenu>
  8760. <productMenu id="deviceSetting"
  8761. type="1"
  8762. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  8763. </productMenu>
  8764. <productMenu id="quickGuide"
  8765. type="1"
  8766. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  8767. size="344KB" >
  8768. </productMenu>
  8769. <productMenu id="userGuide"
  8770. type="1"
  8771. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  8772. size="1.14MB" >
  8773. </productMenu>
  8774. <productMenu id="connectGuide"
  8775. type="1"
  8776. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  8777. size="1.12MB" >
  8778. </productMenu>
  8779. <productID id="3400"
  8780. />
  8781. <productGroupable type="0"
  8782. />
  8783. </product>
  8784. <product id="ACS10"
  8785. name="ACS10"
  8786. series="ACS"
  8787. latestVersion="1.0.2"
  8788. show = "1" >
  8789. <productMenu id="protocol"
  8790. type="0">
  8791. </productMenu>
  8792. <productMenu id="sip"
  8793. type="1" >
  8794. </productMenu>
  8795. <productMenu id="bluetoothIntercom"
  8796. type="1" >
  8797. </productMenu>
  8798. <productMenu id="phone"
  8799. type="2" >
  8800. </productMenu>
  8801. <productMenu id="deviceSetting"
  8802. type="1"
  8803. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  8804. </productMenu>
  8805. <productMenu id="quickGuide"
  8806. type="1"
  8807. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  8808. size="970KB" >
  8809. </productMenu>
  8810. <productMenu id="userGuide"
  8811. type="1"
  8812. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  8813. size="1.26MB" >
  8814. </productMenu>
  8815. <productMenu id="connectGuide"
  8816. type="1"
  8817. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  8818. size="1.12MB" >
  8819. </productMenu>
  8820. <productID id="3300"
  8821. />
  8822. <productGroupable type="0"
  8823. />
  8824. </product>
  8825. <product id="DWO7ProMesh"
  8826. name="DWO 7 Pro Mesh"
  8827. series="50"
  8828. latestVersion="1.1"
  8829. latestVersionVoicePrompt="0.9"
  8830. show = "0" >
  8831. <productMenu id="protocol"
  8832. type="2" >
  8833. </productMenu>
  8834. <productMenu id="alexa"
  8835. type="0" >
  8836. </productMenu>
  8837. <productMenu id="ota"
  8838. type="2" >
  8839. <otaPackages>
  8840. <package
  8841. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  8842. size="2945812"
  8843. />
  8844. </otaPackages>
  8845. </productMenu>
  8846. <productMenu id="wa"
  8847. type="0" >
  8848. </productMenu>
  8849. <productMenu id="meshIntercom"
  8850. type="20" >
  8851. </productMenu>
  8852. <productMenu id="meshIntercom+"
  8853. type="3"
  8854. url="2" >
  8855. <productMenuType version="1.0.9"
  8856. type="2"
  8857. />
  8858. <productMenuURL version="2.1.1"
  8859. url="0"
  8860. />
  8861. </productMenu>
  8862. <productMenu id="waveIntercom"
  8863. type="1" >
  8864. <productMenuType version="1.0.9"
  8865. type="0"
  8866. />
  8867. </productMenu>
  8868. <productMenu id="phone"
  8869. type="1" >
  8870. </productMenu>
  8871. <productMenu id="music"
  8872. type="1" >
  8873. </productMenu>
  8874. <productMenu id="fmradio"
  8875. type="1" >
  8876. </productMenu>
  8877. <productMenu id="musicSharing"
  8878. type="0" >
  8879. </productMenu>
  8880. <productMenu id="deviceSetting"
  8881. type="1"
  8882. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  8883. <productMenuURL version="1.0.9"
  8884. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  8885. />
  8886. </productMenu>
  8887. <productMenu id="quickGuide"
  8888. type="1"
  8889. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  8890. size="1.12MB" >
  8891. </productMenu>
  8892. <productMenu id="userGuide"
  8893. type="1"
  8894. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  8895. size="2.0MB" >
  8896. </productMenu>
  8897. <productMenu id="volume"
  8898. type="12" >
  8899. </productMenu>
  8900. <productMenu id="battery"
  8901. type="1" >
  8902. </productMenu>
  8903. <productID id="6806"
  8904. />
  8905. <productGroupable type="0"
  8906. />
  8907. </product>
  8908. <product id="UCOM16R"
  8909. name="U-COM 16R"
  8910. series="UCOM"
  8911. latestVersion="1.0"
  8912. latestVersionMesh="1.0"
  8913. latestVersionVoicePrompt="1.0"
  8914. show = "-1" >
  8915. <productMenu id="protocol"
  8916. type="2" >
  8917. </productMenu>
  8918. <productMenu id="ota"
  8919. type="0" >
  8920. <otaLanguages>
  8921. <otaLanguage
  8922. id="0"
  8923. name="English"
  8924. package="0"
  8925. />
  8926. <otaLanguage
  8927. id="0"
  8928. name="French"
  8929. package="1"
  8930. />
  8931. <otaLanguage
  8932. id="0"
  8933. name="Spanish"
  8934. package="2"
  8935. />
  8936. <otaLanguage
  8937. id="0"
  8938. name="Italian"
  8939. package="3"
  8940. />
  8941. <otaLanguage
  8942. id="0"
  8943. name="German"
  8944. package="4"
  8945. />
  8946. <otaLanguage
  8947. id="0"
  8948. name="Dutch"
  8949. package="5"
  8950. />
  8951. <otaLanguage
  8952. id="0"
  8953. name="Russian"
  8954. package="6"
  8955. />
  8956. <otaLanguage
  8957. id="0"
  8958. name="Chinese"
  8959. package="7"
  8960. />
  8961. <otaLanguage
  8962. id="0"
  8963. name="Korean"
  8964. package="8"
  8965. />
  8966. <otaLanguage
  8967. id="0"
  8968. name="Japanese"
  8969. package="9"
  8970. />
  8971. <otaLanguage
  8972. id="0"
  8973. name="Finnish"
  8974. package="10"
  8975. />
  8976. </otaLanguages>
  8977. <otaPackages>
  8978. <package
  8979. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2.img"
  8980. size="5183988"
  8981. />
  8982. <package
  8983. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  8984. size="5183988"
  8985. />
  8986. <package
  8987. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  8988. size="5183988"
  8989. />
  8990. <package
  8991. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  8992. size="5183988"
  8993. />
  8994. <package
  8995. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  8996. size="5183988"
  8997. />
  8998. <package
  8999. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  9000. size="5183988"
  9001. />
  9002. <package
  9003. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  9004. size="5183988"
  9005. />
  9006. <package
  9007. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  9008. size="5183988"
  9009. />
  9010. <package
  9011. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  9012. size="5183988"
  9013. />
  9014. <package
  9015. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  9016. size="5183988"
  9017. />
  9018. <package
  9019. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  9020. size="5183988"
  9021. />
  9022. </otaPackages>
  9023. </productMenu>
  9024. <productMenu id="wa"
  9025. type="0" >
  9026. </productMenu>
  9027. <productMenu id="sip"
  9028. type="1" >
  9029. </productMenu>
  9030. <productMenu id="led"
  9031. type="0" >
  9032. </productMenu>
  9033. <productMenu id="illusion"
  9034. type="1" >
  9035. </productMenu>
  9036. <productMenu id="meshIntercom"
  9037. type="30" >
  9038. </productMenu>
  9039. <productMenu id="meshIntercom+"
  9040. type="3"
  9041. url="2" >
  9042. </productMenu>
  9043. <productMenu id="waveIntercom"
  9044. type="0" >
  9045. </productMenu>
  9046. <productMenu id="bluetoothIntercom"
  9047. type="1" >
  9048. </productMenu>
  9049. <productMenu id="bluetoothIntercomGrouping"
  9050. type="0" >
  9051. </productMenu>
  9052. <productMenu id="fmradio"
  9053. type="1"
  9054. url="1" >
  9055. </productMenu>
  9056. <productMenu id="phone"
  9057. type="1" >
  9058. </productMenu>
  9059. <productMenu id="music"
  9060. type="1" >
  9061. </productMenu>
  9062. <productMenu id="musicSharing"
  9063. type="0" >
  9064. </productMenu>
  9065. <productMenu id="deviceSetting"
  9066. type="1"
  9067. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  9068. </productMenu>
  9069. <productMenu id="quickGuide"
  9070. type="0"
  9071. url=""
  9072. size="1.12MB" >
  9073. </productMenu>
  9074. <productMenu id="userGuide"
  9075. type="1"
  9076. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  9077. size="2.0MB" >
  9078. </productMenu>
  9079. <productMenu id="videoGuide"
  9080. type="0"
  9081. url=""
  9082. size="3.41MB" >
  9083. </productMenu>
  9084. <productMenu id="volume"
  9085. type="16" >
  9086. </productMenu>
  9087. <productMenu id="soundMode"
  9088. type="1" >
  9089. </productMenu>
  9090. <productMenu id="battery"
  9091. type="1" >
  9092. </productMenu>
  9093. <productID id="6A83"
  9094. />
  9095. <productGroupable type="0"
  9096. />
  9097. </product>
  9098. <product id="MeshStation"
  9099. name="Mesh Station"
  9100. series="50"
  9101. latestVersion="0.9"
  9102. show = "-1" >
  9103. <productMenu id="protocol"
  9104. type="2" >
  9105. </productMenu>
  9106. <productMenu id="meshIntercom"
  9107. type="20"
  9108. url="99" >
  9109. </productMenu>
  9110. <productID id="3161"
  9111. />
  9112. <productGroupable type="0"
  9113. />
  9114. </product>
  9115. </products>
  9116. </sna>