snm.xml 202 KB

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