snm.xml 184 KB

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