snm.xml 210 KB

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