snm.xml 211 KB

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