snm.xml 245 KB

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