snm.xml 214 KB

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