snm.xml 214 KB

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