snm.xml 189 KB

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