snm.xml 192 KB

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