snm.xml 191 KB

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