snm.xml 249 KB

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