snm.xml 247 KB

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