snm.xml 363 KB

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