snm.xml 234 KB

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