snm.xml 218 KB

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