snm.xml 363 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20250205" 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/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.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/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  16. />
  17. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.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 Series"
  60. show="1"
  61. />
  62. <series id="50"
  63. name="50 Series"
  64. show="1"
  65. />
  66. <series id="Helmet"
  67. name="Smart Helmet"
  68. show="1"
  69. />
  70. <series id="30"
  71. name="30 Series"
  72. show="1"
  73. />
  74. <series id="SF"
  75. name="SF Series"
  76. show="1"
  77. />
  78. <series id="SPIDER"
  79. name="SPIDER Series"
  80. show="1"
  81. />
  82. <series id="20"
  83. name="20 Series"
  84. show="1"
  85. />
  86. <series id="SRL"
  87. name="SRL Series"
  88. show="1"
  89. />
  90. <series id="ACS"
  91. name="ACS Series"
  92. show="1"
  93. />
  94. <series id="10"
  95. name="10 Series"
  96. show="1"
  97. />
  98. <series id="5"
  99. name="5 Series"
  100. show="1"
  101. />
  102. <series id="3"
  103. name="3 Series"
  104. show="1"
  105. />
  106. <series id="C"
  107. name="C Series"
  108. show="1"
  109. />
  110. <!--
  111. <series id="smh"
  112. name="SMH"
  113. />
  114. <series id="cavalry"
  115. name="CAVALRY"
  116. show="0"
  117. />
  118. -->
  119. </serieses>
  120. <products>
  121. <product id="60S"
  122. name="60S"
  123. series="60"
  124. latestVersion="1.2.1"
  125. latestVersionMesh="1.2"
  126. latestVersionVoicePrompt="1.1"
  127. show = "1" >
  128. <productMenu id="protocol"
  129. type="2" >
  130. </productMenu>
  131. <productMenu id="ota"
  132. type="2" >
  133. <otaLanguages>
  134. <otaLanguage
  135. id="0"
  136. name="English"
  137. package="0"
  138. />
  139. <otaLanguage
  140. id="0"
  141. name="French"
  142. package="1"
  143. />
  144. <otaLanguage
  145. id="0"
  146. name="Spanish"
  147. package="2"
  148. />
  149. <otaLanguage
  150. id="0"
  151. name="Italian"
  152. package="3"
  153. />
  154. <otaLanguage
  155. id="0"
  156. name="German"
  157. package="4"
  158. />
  159. <otaLanguage
  160. id="0"
  161. name="Dutch"
  162. package="5"
  163. />
  164. <otaLanguage
  165. id="0"
  166. name="Russian"
  167. package="6"
  168. />
  169. <otaLanguage
  170. id="0"
  171. name="Chinese"
  172. package="7"
  173. />
  174. <otaLanguage
  175. id="0"
  176. name="Korean"
  177. package="8"
  178. />
  179. <otaLanguage
  180. id="0"
  181. name="Japanese"
  182. package="9"
  183. />
  184. <otaLanguage
  185. id="0"
  186. name="Finnish"
  187. package="10"
  188. />
  189. <otaLanguage
  190. id="0"
  191. name="Polish"
  192. package="11"
  193. />
  194. </otaLanguages>
  195. <otaPackages>
  196. <package
  197. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1.img"
  198. size="5183988"
  199. />
  200. <package
  201. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-fr-FR.img"
  202. size="5183988"
  203. />
  204. <package
  205. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-es-ES.img"
  206. size="5183988"
  207. />
  208. <package
  209. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-it-IT.img"
  210. size="5183988"
  211. />
  212. <package
  213. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-de-DE.img"
  214. size="5183988"
  215. />
  216. <package
  217. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-nl-NL.img"
  218. size="5183988"
  219. />
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-ru-RU.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-cmn-CN.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-ko-KR.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-ja-JP.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-fi-FI.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-pl-PL.img"
  242. size="5183988"
  243. />
  244. </otaPackages>
  245. </productMenu>
  246. <productMenu id="sip"
  247. type="1" >
  248. </productMenu>
  249. <productMenu id="illusion"
  250. type="1" >
  251. </productMenu>
  252. <productMenu id="meshIntercom"
  253. type="30" >
  254. </productMenu>
  255. <productMenu id="meshIntercom+"
  256. type="3"
  257. url="2" >
  258. </productMenu>
  259. <productMenu id="waveIntercom"
  260. type="1" >
  261. </productMenu>
  262. <productMenu id="bluetoothIntercom"
  263. type="1"
  264. url="2" >
  265. </productMenu>
  266. <productMenu id="bluetoothIntercomGrouping"
  267. type="0" >
  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/SenaNeoApp/60/NS_60_02.xml" >
  285. </productMenu>
  286. <productMenu id="quickGuide"
  287. type="0"
  288. url=""
  289. size="1.12MB" >
  290. </productMenu>
  291. <productMenu id="userGuide"
  292. type="1"
  293. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.0_en_250808.pdf"
  294. size="2.0MB" >
  295. </productMenu>
  296. <productMenu id="videoGuide"
  297. type="0"
  298. url=""
  299. size="3.41MB" >
  300. </productMenu>
  301. <productMenu id="connectGuide"
  302. type="1"
  303. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  304. size="1.12MB" >
  305. </productMenu>
  306. <productMenu id="volume"
  307. type="16" >
  308. </productMenu>
  309. <productMenu id="soundMode"
  310. type="0" >
  311. </productMenu>
  312. <productMenu id="battery"
  313. type="1" >
  314. </productMenu>
  315. <productID id="6A0D"
  316. />
  317. <productGroupable type="0"
  318. />
  319. </product>
  320. <product id="60S"
  321. name="60S"
  322. series="60"
  323. latestVersion="1.2"
  324. latestVersionMesh="1.2"
  325. latestVersionVoicePrompt="1.1"
  326. show = "-1" >
  327. <productMenu id="protocol"
  328. type="2" >
  329. </productMenu>
  330. <productMenu id="ota"
  331. type="2" >
  332. <otaLanguages>
  333. <otaLanguage
  334. id="0"
  335. name="English"
  336. package="0"
  337. />
  338. <otaLanguage
  339. id="0"
  340. name="French"
  341. package="1"
  342. />
  343. <otaLanguage
  344. id="0"
  345. name="Spanish"
  346. package="2"
  347. />
  348. <otaLanguage
  349. id="0"
  350. name="Italian"
  351. package="3"
  352. />
  353. <otaLanguage
  354. id="0"
  355. name="German"
  356. package="4"
  357. />
  358. <otaLanguage
  359. id="0"
  360. name="Dutch"
  361. package="5"
  362. />
  363. <otaLanguage
  364. id="0"
  365. name="Russian"
  366. package="6"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Chinese"
  371. package="7"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="Korean"
  376. package="8"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Japanese"
  381. package="9"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Finnish"
  386. package="10"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Polish"
  391. package="11"
  392. />
  393. </otaLanguages>
  394. <otaPackages>
  395. <package
  396. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2.img"
  397. size="5183988"
  398. />
  399. <package
  400. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  401. size="5183988"
  402. />
  403. <package
  404. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  405. size="5183988"
  406. />
  407. <package
  408. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-pl-PL.img"
  441. size="5183988"
  442. />
  443. </otaPackages>
  444. </productMenu>
  445. <productMenu id="wa"
  446. type="0" >
  447. </productMenu>
  448. <productMenu id="sip"
  449. type="1" >
  450. </productMenu>
  451. <productMenu id="led"
  452. type="0" >
  453. </productMenu>
  454. <productMenu id="illusion"
  455. type="1" >
  456. </productMenu>
  457. <productMenu id="meshIntercom"
  458. type="30" >
  459. </productMenu>
  460. <productMenu id="meshIntercom+"
  461. type="3"
  462. url="2" >
  463. <productMenuURL version="1.0.2"
  464. url="10"
  465. />
  466. </productMenu>
  467. <productMenu id="waveIntercom"
  468. type="1" >
  469. <productMenuType version="1.0.9"
  470. type="0"
  471. />
  472. </productMenu>
  473. <productMenu id="bluetoothIntercom"
  474. type="1"
  475. url="2" >
  476. </productMenu>
  477. <productMenu id="bluetoothIntercomGrouping"
  478. type="0" >
  479. </productMenu>
  480. <productMenu id="fmradio"
  481. type="1"
  482. url="1" >
  483. </productMenu>
  484. <productMenu id="phone"
  485. type="1" >
  486. </productMenu>
  487. <productMenu id="music"
  488. type="1" >
  489. </productMenu>
  490. <productMenu id="musicSharing"
  491. type="0" >
  492. </productMenu>
  493. <productMenu id="deviceSetting"
  494. type="1"
  495. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  496. <productMenuURL version="1.0.2"
  497. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  498. />
  499. <productMenuURL version="1.0"
  500. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  501. />
  502. <productMenuURL version="0.9.11"
  503. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  504. />
  505. </productMenu>
  506. <productMenu id="quickGuide"
  507. type="0"
  508. url=""
  509. size="1.12MB" >
  510. </productMenu>
  511. <productMenu id="userGuide"
  512. type="1"
  513. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.0_en_250808.pdf"
  514. size="2.0MB" >
  515. </productMenu>
  516. <productMenu id="videoGuide"
  517. type="0"
  518. url=""
  519. size="3.41MB" >
  520. </productMenu>
  521. <productMenu id="connectGuide"
  522. type="1"
  523. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  524. size="1.12MB" >
  525. </productMenu>
  526. <productMenu id="volume"
  527. type="16" >
  528. <productMenuType version="0.9.11"
  529. type="13"
  530. />
  531. </productMenu>
  532. <productMenu id="soundMode"
  533. type="0" >
  534. <productMenuType version="0.9.11"
  535. type="0"
  536. />
  537. </productMenu>
  538. <productMenu id="battery"
  539. type="1" >
  540. </productMenu>
  541. <productID id="6A02"
  542. />
  543. <productGroupable type="0"
  544. />
  545. </product>
  546. <product id="60X"
  547. name="60X"
  548. series="60"
  549. latestVersion="0.7"
  550. latestVersionMesh="0.8"
  551. latestVersionVoicePrompt="0.2"
  552. show = "-1" >
  553. <productMenu id="protocol"
  554. type="2" >
  555. </productMenu>
  556. <productMenu id="ota"
  557. type="0" >
  558. <otaLanguages>
  559. <otaLanguage
  560. id="0"
  561. name="English"
  562. package="0"
  563. />
  564. <otaLanguage
  565. id="0"
  566. name="Korean"
  567. package="1"
  568. />
  569. </otaLanguages>
  570. <otaPackages>
  571. <package
  572. url="https://api.sena.com/support/test/60R-v0.7-build0_en_US.img"
  573. size="5183988"
  574. />
  575. <package
  576. url="https://api.sena.com/support/test/60R-v0.6.4-build0_kr_KR.img"
  577. size="5183988"
  578. />
  579. </otaPackages>
  580. </productMenu>
  581. <productMenu id="wa"
  582. type="0" >
  583. </productMenu>
  584. <productMenu id="sip"
  585. type="1" >
  586. </productMenu>
  587. <productMenu id="led"
  588. type="1" >
  589. </productMenu>
  590. <productMenu id="illusion"
  591. type="1" >
  592. </productMenu>
  593. <productMenu id="meshIntercom"
  594. type="30" >
  595. </productMenu>
  596. <productMenu id="bluetoothIntercom"
  597. type="1" >
  598. </productMenu>
  599. <productMenu id="fmradio"
  600. type="1"
  601. url="1" >
  602. </productMenu>
  603. <productMenu id="phone"
  604. type="1" >
  605. </productMenu>
  606. <productMenu id="music"
  607. type="1" >
  608. </productMenu>
  609. <productMenu id="musicSharing"
  610. type="0" >
  611. </productMenu>
  612. <productMenu id="deviceSetting"
  613. type="1"
  614. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml" >
  615. </productMenu>
  616. <productMenu id="quickGuide"
  617. type="0"
  618. url=""
  619. size="1.12MB" >
  620. </productMenu>
  621. <productMenu id="userGuide"
  622. type="0"
  623. url=""
  624. size="2.0MB" >
  625. </productMenu>
  626. <productMenu id="videoGuide"
  627. type="0"
  628. url=""
  629. size="3.41MB" >
  630. </productMenu>
  631. <productMenu id="volume"
  632. type="13" >
  633. </productMenu>
  634. <productMenu id="battery"
  635. type="1" >
  636. </productMenu>
  637. <productID id="6A03"
  638. />
  639. <productGroupable type="0"
  640. />
  641. </product>
  642. <product id="COMP1"
  643. name="BMW COM P1"
  644. series="60"
  645. latestVersion="1.0.6"
  646. latestVersionMesh="0.19"
  647. latestVersionVoicePrompt="1.0"
  648. show = "-1" >
  649. <productMenu id="protocol"
  650. type="2" >
  651. </productMenu>
  652. <productMenu id="ota"
  653. type="2" >
  654. <otaLanguages>
  655. <otaLanguage
  656. id="0"
  657. name="English"
  658. package="0"
  659. />
  660. <otaLanguage
  661. id="0"
  662. name="French"
  663. package="1"
  664. />
  665. <otaLanguage
  666. id="0"
  667. name="Spanish"
  668. package="2"
  669. />
  670. <otaLanguage
  671. id="0"
  672. name="Italian"
  673. package="3"
  674. />
  675. <otaLanguage
  676. id="0"
  677. name="German"
  678. package="4"
  679. />
  680. <otaLanguage
  681. id="0"
  682. name="Dutch"
  683. package="5"
  684. />
  685. <otaLanguage
  686. id="0"
  687. name="Russian"
  688. package="6"
  689. />
  690. <otaLanguage
  691. id="0"
  692. name="Chinese"
  693. package="7"
  694. />
  695. <otaLanguage
  696. id="0"
  697. name="Korean"
  698. package="8"
  699. />
  700. <otaLanguage
  701. id="0"
  702. name="Japanese"
  703. package="9"
  704. />
  705. <otaLanguage
  706. id="0"
  707. name="Finnish"
  708. package="10"
  709. />
  710. </otaLanguages>
  711. <otaPackages>
  712. <package
  713. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  714. size="5183988"
  715. />
  716. <package
  717. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  718. size="5183988"
  719. />
  720. <package
  721. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  722. size="5183988"
  723. />
  724. <package
  725. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  726. size="5183988"
  727. />
  728. <package
  729. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  730. size="5183988"
  731. />
  732. <package
  733. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  734. size="5183988"
  735. />
  736. <package
  737. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  738. size="5183988"
  739. />
  740. <package
  741. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  742. size="5183988"
  743. />
  744. <package
  745. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  746. size="5183988"
  747. />
  748. <package
  749. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  750. size="5183988"
  751. />
  752. <package
  753. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  754. size="5183988"
  755. />
  756. </otaPackages>
  757. </productMenu>
  758. <productMenu id="wa"
  759. type="0" >
  760. </productMenu>
  761. <productMenu id="sip"
  762. type="1" >
  763. </productMenu>
  764. <productMenu id="led"
  765. type="0" >
  766. </productMenu>
  767. <productMenu id="illusion"
  768. type="0" >
  769. </productMenu>
  770. <productMenu id="meshIntercom"
  771. type="30" >
  772. </productMenu>
  773. <productMenu id="bluetoothIntercom"
  774. type="1" >
  775. </productMenu>
  776. <productMenu id="bluetoothIntercomGrouping"
  777. type="0" >
  778. </productMenu>
  779. <productMenu id="fmradio"
  780. type="0" >
  781. </productMenu>
  782. <productMenu id="phone"
  783. type="1" >
  784. </productMenu>
  785. <productMenu id="music"
  786. type="1" >
  787. </productMenu>
  788. <productMenu id="musicSharing"
  789. type="0" >
  790. </productMenu>
  791. <productMenu id="deviceSetting"
  792. type="1"
  793. url="https://api.sena.com/support/test/xml/NS_COMP1_Test_13.xml" >
  794. </productMenu>
  795. <productMenu id="quickGuide"
  796. type="0"
  797. url=""
  798. size="1.12MB" >
  799. </productMenu>
  800. <productMenu id="userGuide"
  801. type="0"
  802. url=""
  803. size="2.0MB" >
  804. </productMenu>
  805. <productMenu id="videoGuide"
  806. type="0"
  807. url=""
  808. size="3.41MB" >
  809. </productMenu>
  810. <productMenu id="volume"
  811. type="16" >
  812. </productMenu>
  813. <productMenu id="battery"
  814. type="1" >
  815. </productMenu>
  816. <productID id="6A80"
  817. />
  818. <productGroupable type="0"
  819. />
  820. </product>
  821. <product id="50S"
  822. name="50S"
  823. series="50"
  824. latestVersion="2.7.1"
  825. show = "1" >
  826. <productMenu id="protocol"
  827. type="2" >
  828. </productMenu>
  829. <productMenu id="alexa"
  830. type="0" >
  831. </productMenu>
  832. <productMenu id="ota"
  833. type="0"
  834. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  835. size="1150234" >
  836. </productMenu>
  837. <productMenu id="wa"
  838. type="1" >
  839. </productMenu>
  840. <productMenu id="sip"
  841. type="1" >
  842. </productMenu>
  843. <productMenu id="meshIntercom"
  844. type="30" >
  845. <productMenuType version="2.1.1"
  846. type="20"
  847. />
  848. </productMenu>
  849. <productMenu id="meshIntercom+"
  850. type="3"
  851. url="2" >
  852. <productMenuType version="2.5"
  853. type="2"
  854. />
  855. <productMenuURL version="2.1.1"
  856. url="0"
  857. />
  858. </productMenu>
  859. <productMenu id="waveIntercom"
  860. type="1" >
  861. <productMenuType version="2.6"
  862. type="0"
  863. />
  864. </productMenu>
  865. <productMenu id="bluetoothIntercom"
  866. type="1" >
  867. </productMenu>
  868. <productMenu id="phone"
  869. type="1" >
  870. </productMenu>
  871. <productMenu id="music"
  872. type="1" >
  873. </productMenu>
  874. <productMenu id="fmradio"
  875. type="1" >
  876. </productMenu>
  877. <productMenu id="deviceSetting"
  878. type="1"
  879. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  880. <productMenuURL version="2.5"
  881. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  882. />
  883. <productMenuURL version="2.1.1"
  884. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  885. />
  886. <productMenuURL version="2.0.3"
  887. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  888. />
  889. </productMenu>
  890. <productMenu id="quickGuide"
  891. type="0"
  892. url=""
  893. size="934KB" >
  894. </productMenu>
  895. <productMenu id="userGuide"
  896. type="1"
  897. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  898. size="1.14MB" >
  899. </productMenu>
  900. <productMenu id="videoGuide"
  901. type="1"
  902. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  903. size="3.41MB" >
  904. </productMenu>
  905. <productMenu id="connectGuide"
  906. type="1"
  907. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  908. size="1.12MB" >
  909. </productMenu>
  910. <productMenu id="volume"
  911. type="11" >
  912. </productMenu>
  913. <productMenu id="battery"
  914. type="1" >
  915. </productMenu>
  916. <productID id="3210"
  917. />
  918. <productGroupable type="0"
  919. />
  920. </product>
  921. <product id="50S"
  922. name="50S"
  923. series="50"
  924. latestVersion="1.5"
  925. show = "-1" >
  926. <productMenu id="protocol"
  927. type="2" >
  928. </productMenu>
  929. <productMenu id="alexa"
  930. type="0" >
  931. </productMenu>
  932. <productMenu id="wa"
  933. type="1" >
  934. </productMenu>
  935. <productMenu id="sip"
  936. type="1" >
  937. </productMenu>
  938. <productMenu id="meshIntercom"
  939. type="30" >
  940. <productMenuType version="1.2.2"
  941. type="20"
  942. />
  943. </productMenu>
  944. <productMenu id="meshIntercom+"
  945. type="3"
  946. url="2" >
  947. <productMenuType version="1.4.9"
  948. type="2"
  949. />
  950. <productMenuURL version="1.2.2"
  951. url="0"
  952. />
  953. </productMenu>
  954. <productMenu id="waveIntercom"
  955. type="1" >
  956. <productMenuType version="1.3.9"
  957. type="0"
  958. />
  959. </productMenu>
  960. <productMenu id="bluetoothIntercom"
  961. type="1" >
  962. </productMenu>
  963. <productMenu id="phone"
  964. type="1" >
  965. </productMenu>
  966. <productMenu id="music"
  967. type="1" >
  968. </productMenu>
  969. <productMenu id="fmradio"
  970. type="1" >
  971. </productMenu>
  972. <productMenu id="deviceSetting"
  973. type="1"
  974. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  975. <productMenuURL version="1.4.9"
  976. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  977. />
  978. <productMenuURL version="1.3.9"
  979. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  980. />
  981. <productMenuURL version="1.2.2"
  982. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  983. />
  984. <productMenuURL version="1.1.1"
  985. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  986. />
  987. </productMenu>
  988. <productMenu id="quickGuide"
  989. type="0"
  990. url=""
  991. size="934KB" >
  992. </productMenu>
  993. <productMenu id="userGuide"
  994. type="1"
  995. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  996. size="1.14MB" >
  997. </productMenu>
  998. <productMenu id="videoGuide"
  999. type="1"
  1000. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1001. size="3.41MB" >
  1002. </productMenu>
  1003. <productMenu id="volume"
  1004. type="11" >
  1005. </productMenu>
  1006. <productMenu id="battery"
  1007. type="1" >
  1008. </productMenu>
  1009. <productID id="3132"
  1010. />
  1011. <productGroupable type="0"
  1012. />
  1013. </product>
  1014. <product id="50R"
  1015. name="50R"
  1016. series="50"
  1017. latestVersion="2.7"
  1018. show = "1" >
  1019. <productMenu id="protocol"
  1020. type="2" >
  1021. </productMenu>
  1022. <productMenu id="alexa"
  1023. type="0" >
  1024. </productMenu>
  1025. <productMenu id="ota"
  1026. type="0"
  1027. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1028. size="1150234" >
  1029. </productMenu>
  1030. <productMenu id="wa"
  1031. type="1" >
  1032. </productMenu>
  1033. <productMenu id="sip"
  1034. type="1" >
  1035. </productMenu>
  1036. <productMenu id="meshIntercom"
  1037. type="30" >
  1038. <productMenuType version="2.1.1"
  1039. type="20"
  1040. />
  1041. </productMenu>
  1042. <productMenu id="meshIntercom+"
  1043. type="3"
  1044. url="2" >
  1045. <productMenuType version="2.5"
  1046. type="2"
  1047. />
  1048. <productMenuURL version="2.1.1"
  1049. url="0"
  1050. />
  1051. </productMenu>
  1052. <productMenu id="bluetoothIntercom"
  1053. type="1" >
  1054. </productMenu>
  1055. <productMenu id="phone"
  1056. type="1" >
  1057. </productMenu>
  1058. <productMenu id="music"
  1059. type="1" >
  1060. </productMenu>
  1061. <productMenu id="fmradio"
  1062. type="1" >
  1063. </productMenu>
  1064. <productMenu id="deviceSetting"
  1065. type="1"
  1066. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1067. <productMenuURL version="2.5"
  1068. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1069. />
  1070. <productMenuURL version="2.1.1"
  1071. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1072. />
  1073. <productMenuURL version="2.0"
  1074. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1075. />
  1076. </productMenu>
  1077. <productMenu id="quickGuide"
  1078. type="0"
  1079. url=""
  1080. size="344KB" >
  1081. </productMenu>
  1082. <productMenu id="userGuide"
  1083. type="1"
  1084. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1085. size="3.41MB" >
  1086. </productMenu>
  1087. <productMenu id="videoGuide"
  1088. type="1"
  1089. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1090. size="3.41MB" >
  1091. </productMenu>
  1092. <productMenu id="connectGuide"
  1093. type="1"
  1094. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1095. size="1.12MB" >
  1096. </productMenu>
  1097. <productMenu id="volume"
  1098. type="11" >
  1099. </productMenu>
  1100. <productMenu id="battery"
  1101. type="1" >
  1102. </productMenu>
  1103. <productID id="3218"
  1104. />
  1105. <productGroupable type="0"
  1106. />
  1107. </product>
  1108. <product id="50R"
  1109. name="50R"
  1110. series="50"
  1111. latestVersion="1.5"
  1112. show = "-1" >
  1113. <productMenu id="protocol"
  1114. type="2" >
  1115. </productMenu>
  1116. <productMenu id="alexa"
  1117. type="0" >
  1118. </productMenu>
  1119. <productMenu id="wa"
  1120. type="1" >
  1121. </productMenu>
  1122. <productMenu id="sip"
  1123. type="1" >
  1124. </productMenu>
  1125. <productMenu id="meshIntercom"
  1126. type="30" >
  1127. <productMenuType version="1.2.2"
  1128. type="20"
  1129. />
  1130. </productMenu>
  1131. <productMenu id="meshIntercom+"
  1132. type="3"
  1133. url="2" >
  1134. <productMenuType version="1.4.9"
  1135. type="2"
  1136. />
  1137. <productMenuURL version="1.2.2"
  1138. url="0"
  1139. />
  1140. </productMenu>
  1141. <productMenu id="waveIntercom"
  1142. type="1" >
  1143. <productMenuType version="1.3.9"
  1144. type="0"
  1145. />
  1146. </productMenu>
  1147. <productMenu id="bluetoothIntercom"
  1148. type="1" >
  1149. </productMenu>
  1150. <productMenu id="phone"
  1151. type="1" >
  1152. </productMenu>
  1153. <productMenu id="music"
  1154. type="1" >
  1155. </productMenu>
  1156. <productMenu id="fmradio"
  1157. type="1" >
  1158. </productMenu>
  1159. <productMenu id="deviceSetting"
  1160. type="1"
  1161. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1162. <productMenuURL version="1.4.9"
  1163. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1164. />
  1165. <productMenuURL version="1.3.9"
  1166. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1167. />
  1168. <productMenuURL version="1.2.2"
  1169. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1170. />
  1171. <productMenuURL version="1.1.1"
  1172. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1173. />
  1174. </productMenu>
  1175. <productMenu id="quickGuide"
  1176. type="0"
  1177. url=""
  1178. size="344KB" >
  1179. </productMenu>
  1180. <productMenu id="userGuide"
  1181. type="1"
  1182. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  1183. size="3.41MB" >
  1184. </productMenu>
  1185. <productMenu id="videoGuide"
  1186. type="1"
  1187. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1188. size="3.41MB" >
  1189. </productMenu>
  1190. <productMenu id="volume"
  1191. type="11" >
  1192. </productMenu>
  1193. <productMenu id="battery"
  1194. type="1" >
  1195. </productMenu>
  1196. <productID id="3134"
  1197. />
  1198. <productGroupable type="0"
  1199. />
  1200. </product>
  1201. <product id="50C"
  1202. name="50C"
  1203. series="50"
  1204. latestVersion="1.4.2"
  1205. show = "1" >
  1206. <productMenu id="protocol"
  1207. type="2" >
  1208. </productMenu>
  1209. <productMenu id="ota"
  1210. type="0" >
  1211. </productMenu>
  1212. <productMenu id="wa"
  1213. type="1" >
  1214. </productMenu>
  1215. <productMenu id="sip"
  1216. type="1" >
  1217. </productMenu>
  1218. <productMenu id="meshIntercom"
  1219. type="30" >
  1220. <productMenuType version="1.1.1"
  1221. type="20"
  1222. />
  1223. </productMenu>
  1224. <productMenu id="meshIntercom+"
  1225. type="3"
  1226. url="2" >
  1227. <productMenuType version="1.3.9"
  1228. type="2"
  1229. />
  1230. <productMenuURL version="1.1.1"
  1231. url="0"
  1232. />
  1233. </productMenu>
  1234. <productMenu id="waveIntercom"
  1235. type="1" >
  1236. <productMenuType version="1.2.9"
  1237. type="0"
  1238. />
  1239. </productMenu>
  1240. <productMenu id="bluetoothIntercom"
  1241. type="1" >
  1242. </productMenu>
  1243. <productMenu id="phone"
  1244. type="1" >
  1245. </productMenu>
  1246. <productMenu id="music"
  1247. type="1" >
  1248. </productMenu>
  1249. <productMenu id="fmradio"
  1250. type="1" >
  1251. </productMenu>
  1252. <productMenu id="deviceSetting"
  1253. type="1"
  1254. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  1255. <productMenuURL version="1.3.9"
  1256. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  1257. />
  1258. <productMenuURL version="1.1.1"
  1259. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1260. />
  1261. <productMenuURL version="1.0.1"
  1262. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1263. />
  1264. </productMenu>
  1265. <productMenu id="quickGuide"
  1266. type="0"
  1267. url=""
  1268. size="344KB" >
  1269. </productMenu>
  1270. <productMenu id="userGuide"
  1271. type="1"
  1272. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  1273. size="3.41MB" >
  1274. </productMenu>
  1275. <productMenu id="connectGuide"
  1276. type="1"
  1277. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  1278. size="1.12MB" >
  1279. </productMenu>
  1280. <productMenu id="volume"
  1281. type="11" >
  1282. </productMenu>
  1283. <productMenu id="battery"
  1284. type="1" >
  1285. </productMenu>
  1286. <productID id="3232"
  1287. />
  1288. <productGroupable type="0"
  1289. />
  1290. </product>
  1291. <product id="PHANTOMXB"
  1292. name="PHANTOM XB"
  1293. series="Helmet"
  1294. latestVersion="1.2"
  1295. latestVersionVoicePrompt="1.0"
  1296. show = "-1" >
  1297. <productMenu id="protocol"
  1298. type="2" >
  1299. </productMenu>
  1300. <productMenu id="ota"
  1301. type="0" >
  1302. <otaLanguages>
  1303. <otaLanguage
  1304. id="0"
  1305. name="English"
  1306. package="0"
  1307. />
  1308. <otaLanguage
  1309. id="0"
  1310. name="French"
  1311. package="1"
  1312. />
  1313. <otaLanguage
  1314. id="0"
  1315. name="Spanish"
  1316. package="2"
  1317. />
  1318. <otaLanguage
  1319. id="0"
  1320. name="Italian"
  1321. package="3"
  1322. />
  1323. <otaLanguage
  1324. id="0"
  1325. name="German"
  1326. package="4"
  1327. />
  1328. <otaLanguage
  1329. id="0"
  1330. name="Dutch"
  1331. package="5"
  1332. />
  1333. <otaLanguage
  1334. id="0"
  1335. name="Russian"
  1336. package="6"
  1337. />
  1338. <otaLanguage
  1339. id="0"
  1340. name="Chinese"
  1341. package="7"
  1342. />
  1343. <otaLanguage
  1344. id="0"
  1345. name="Korean"
  1346. package="8"
  1347. />
  1348. <otaLanguage
  1349. id="0"
  1350. name="Japanese"
  1351. package="9"
  1352. />
  1353. <otaLanguage
  1354. id="0"
  1355. name="Finnish"
  1356. package="10"
  1357. />
  1358. <otaLanguage
  1359. id="0"
  1360. name="Polish"
  1361. package="11"
  1362. />
  1363. </otaLanguages>
  1364. <otaPackages>
  1365. <package
  1366. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XBREV-v1.2-build0.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XBREV-v1.2-build0-fr-FR.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XBREV-v1.2-build0-es-ES.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XBREV-v1.2-build0-it-IT.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XBREV-v1.2-build0-de-DE.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XBREV-v1.2-build0-nl-NL.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XBREV-v1.2-build0-ru-RU.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XBREV-v1.2-build0-cmn-CN.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XBREV-v1.2-build0-ko-KR.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XBREV-v1.2-build0-ja-JP.img"
  1403. size="5183988"
  1404. />
  1405. <package
  1406. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XBREV-v1.2-build0-fi-FI.img"
  1407. size="5183988"
  1408. />
  1409. <package
  1410. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XBREV-v1.2-build0-pl-PL.img"
  1411. size="5183988"
  1412. />
  1413. </otaPackages>
  1414. </productMenu>
  1415. <productMenu id="wa"
  1416. type="0" >
  1417. </productMenu>
  1418. <productMenu id="led"
  1419. type="5" >
  1420. </productMenu>
  1421. <productMenu id="led+"
  1422. type="2"
  1423. url="1" >
  1424. </productMenu>
  1425. <productMenu id="meshIntercom"
  1426. type="30" >
  1427. </productMenu>
  1428. <productMenu id="meshIntercom+"
  1429. type="3"
  1430. url="2" >
  1431. </productMenu>
  1432. <productMenu id="waveIntercom"
  1433. type="1" >
  1434. </productMenu>
  1435. <productMenu id="fmradio"
  1436. type="0" >
  1437. </productMenu>
  1438. <productMenu id="phone"
  1439. type="1" >
  1440. </productMenu>
  1441. <productMenu id="music"
  1442. type="1" >
  1443. </productMenu>
  1444. <productMenu id="musicSharing"
  1445. type="0" >
  1446. </productMenu>
  1447. <productMenu id="deviceSetting"
  1448. type="1"
  1449. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  1450. </productMenu>
  1451. <productMenu id="quickGuide"
  1452. type="0"
  1453. url=""
  1454. size="1.12MB" >
  1455. </productMenu>
  1456. <productMenu id="userGuide"
  1457. type="1"
  1458. url=""
  1459. size="2.0MB" >
  1460. </productMenu>
  1461. <productMenu id="videoGuide"
  1462. type="0"
  1463. url=""
  1464. size="3.41MB" >
  1465. </productMenu>
  1466. <productMenu id="volume"
  1467. type="16" >
  1468. </productMenu>
  1469. <productMenu id="battery"
  1470. type="1" >
  1471. </productMenu>
  1472. <productID id="6A0F"
  1473. />
  1474. <productGroupable type="0"
  1475. />
  1476. </product>
  1477. <product id="PHANTOMXB"
  1478. name="PHANTOM XB"
  1479. series="Helmet"
  1480. latestVersion="1.2"
  1481. latestVersionVoicePrompt="1.0"
  1482. show = "-1" >
  1483. <productMenu id="protocol"
  1484. type="2" >
  1485. </productMenu>
  1486. <productMenu id="ota"
  1487. type="2" >
  1488. <otaLanguages>
  1489. <otaLanguage
  1490. id="0"
  1491. name="English"
  1492. package="0"
  1493. />
  1494. <otaLanguage
  1495. id="0"
  1496. name="French"
  1497. package="1"
  1498. />
  1499. <otaLanguage
  1500. id="0"
  1501. name="Spanish"
  1502. package="2"
  1503. />
  1504. <otaLanguage
  1505. id="0"
  1506. name="Italian"
  1507. package="3"
  1508. />
  1509. <otaLanguage
  1510. id="0"
  1511. name="German"
  1512. package="4"
  1513. />
  1514. <otaLanguage
  1515. id="0"
  1516. name="Dutch"
  1517. package="5"
  1518. />
  1519. <otaLanguage
  1520. id="0"
  1521. name="Russian"
  1522. package="6"
  1523. />
  1524. <otaLanguage
  1525. id="0"
  1526. name="Chinese"
  1527. package="7"
  1528. />
  1529. <otaLanguage
  1530. id="0"
  1531. name="Korean"
  1532. package="8"
  1533. />
  1534. <otaLanguage
  1535. id="0"
  1536. name="Japanese"
  1537. package="9"
  1538. />
  1539. <otaLanguage
  1540. id="0"
  1541. name="Finnish"
  1542. package="10"
  1543. />
  1544. <otaLanguage
  1545. id="0"
  1546. name="Polish"
  1547. package="11"
  1548. />
  1549. </otaLanguages>
  1550. <otaPackages>
  1551. <package
  1552. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0.img"
  1553. size="5183988"
  1554. />
  1555. <package
  1556. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-fr-FR.img"
  1557. size="5183988"
  1558. />
  1559. <package
  1560. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-es-ES.img"
  1561. size="5183988"
  1562. />
  1563. <package
  1564. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-it-IT.img"
  1565. size="5183988"
  1566. />
  1567. <package
  1568. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-de-DE.img"
  1569. size="5183988"
  1570. />
  1571. <package
  1572. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-nl-NL.img"
  1573. size="5183988"
  1574. />
  1575. <package
  1576. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-ru-RU.img"
  1577. size="5183988"
  1578. />
  1579. <package
  1580. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-cmn-CN.img"
  1581. size="5183988"
  1582. />
  1583. <package
  1584. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-ko-KR.img"
  1585. size="5183988"
  1586. />
  1587. <package
  1588. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-ja-JP.img"
  1589. size="5183988"
  1590. />
  1591. <package
  1592. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-fi-FI.img"
  1593. size="5183988"
  1594. />
  1595. <package
  1596. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-pl-PL.img"
  1597. size="5183988"
  1598. />
  1599. </otaPackages>
  1600. </productMenu>
  1601. <productMenu id="wa"
  1602. type="0" >
  1603. </productMenu>
  1604. <productMenu id="led"
  1605. type="5" >
  1606. </productMenu>
  1607. <productMenu id="led+"
  1608. type="2"
  1609. url="1" >
  1610. </productMenu>
  1611. <productMenu id="meshIntercom"
  1612. type="30" >
  1613. </productMenu>
  1614. <productMenu id="meshIntercom+"
  1615. type="3"
  1616. url="2" >
  1617. </productMenu>
  1618. <productMenu id="waveIntercom"
  1619. type="1" >
  1620. </productMenu>
  1621. <productMenu id="fmradio"
  1622. type="0" >
  1623. </productMenu>
  1624. <productMenu id="phone"
  1625. type="1" >
  1626. </productMenu>
  1627. <productMenu id="music"
  1628. type="1" >
  1629. </productMenu>
  1630. <productMenu id="musicSharing"
  1631. type="0" >
  1632. </productMenu>
  1633. <productMenu id="deviceSetting"
  1634. type="1"
  1635. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  1636. <productMenuURL version="1.2.1"
  1637. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  1638. />
  1639. </productMenu>
  1640. <productMenu id="quickGuide"
  1641. type="0"
  1642. url=""
  1643. size="1.12MB" >
  1644. </productMenu>
  1645. <productMenu id="userGuide"
  1646. type="1"
  1647. url=""
  1648. size="2.0MB" >
  1649. </productMenu>
  1650. <productMenu id="videoGuide"
  1651. type="0"
  1652. url=""
  1653. size="3.41MB" >
  1654. </productMenu>
  1655. <productMenu id="volume"
  1656. type="16" >
  1657. </productMenu>
  1658. <productMenu id="battery"
  1659. type="1" >
  1660. </productMenu>
  1661. <productID id="6A0C"
  1662. />
  1663. <productGroupable type="0"
  1664. />
  1665. </product>
  1666. <product id="PHANTOMKV"
  1667. name="PHANTOM KV"
  1668. series="Helmet"
  1669. latestVersion="1.2.2"
  1670. latestVersionVoicePrompt="1.0"
  1671. show = "-1" >
  1672. <productMenu id="protocol"
  1673. type="2" >
  1674. </productMenu>
  1675. <productMenu id="ota"
  1676. type="0" >
  1677. <otaLanguages>
  1678. <otaLanguage
  1679. id="0"
  1680. name="English"
  1681. package="0"
  1682. />
  1683. <otaLanguage
  1684. id="0"
  1685. name="French"
  1686. package="1"
  1687. />
  1688. <otaLanguage
  1689. id="0"
  1690. name="Spanish"
  1691. package="2"
  1692. />
  1693. <otaLanguage
  1694. id="0"
  1695. name="Italian"
  1696. package="3"
  1697. />
  1698. <otaLanguage
  1699. id="0"
  1700. name="German"
  1701. package="4"
  1702. />
  1703. <otaLanguage
  1704. id="0"
  1705. name="Dutch"
  1706. package="5"
  1707. />
  1708. <otaLanguage
  1709. id="0"
  1710. name="Russian"
  1711. package="6"
  1712. />
  1713. <otaLanguage
  1714. id="0"
  1715. name="Chinese"
  1716. package="7"
  1717. />
  1718. <otaLanguage
  1719. id="0"
  1720. name="Korean"
  1721. package="8"
  1722. />
  1723. <otaLanguage
  1724. id="0"
  1725. name="Japanese"
  1726. package="9"
  1727. />
  1728. <otaLanguage
  1729. id="0"
  1730. name="Finnish"
  1731. package="10"
  1732. />
  1733. <otaLanguage
  1734. id="0"
  1735. name="Polish"
  1736. package="11"
  1737. />
  1738. </otaLanguages>
  1739. <otaPackages>
  1740. <package
  1741. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0.img"
  1742. size="5183988"
  1743. />
  1744. <package
  1745. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fr-FR.img"
  1746. size="5183988"
  1747. />
  1748. <package
  1749. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-es-ES.img"
  1750. size="5183988"
  1751. />
  1752. <package
  1753. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-it-IT.img"
  1754. size="5183988"
  1755. />
  1756. <package
  1757. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-de-DE.img"
  1758. size="5183988"
  1759. />
  1760. <package
  1761. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-nl-NL.img"
  1762. size="5183988"
  1763. />
  1764. <package
  1765. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ru-RU.img"
  1766. size="5183988"
  1767. />
  1768. <package
  1769. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-cmn-CN.img"
  1770. size="5183988"
  1771. />
  1772. <package
  1773. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ko-KR.img"
  1774. size="5183988"
  1775. />
  1776. <package
  1777. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ja-JP.img"
  1778. size="5183988"
  1779. />
  1780. <package
  1781. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fi-FI.img"
  1782. size="5183988"
  1783. />
  1784. <package
  1785. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-pl-PL.img"
  1786. size="5183988"
  1787. />
  1788. </otaPackages>
  1789. </productMenu>
  1790. <productMenu id="wa"
  1791. type="0" >
  1792. </productMenu>
  1793. <productMenu id="led"
  1794. type="5" >
  1795. </productMenu>
  1796. <productMenu id="led+"
  1797. type="2"
  1798. url="1" >
  1799. </productMenu>
  1800. <productMenu id="meshIntercom"
  1801. type="30" >
  1802. </productMenu>
  1803. <productMenu id="meshIntercom+"
  1804. type="3"
  1805. url="2" >
  1806. </productMenu>
  1807. <productMenu id="waveIntercom"
  1808. type="1" >
  1809. </productMenu>
  1810. <productMenu id="fmradio"
  1811. type="0" >
  1812. </productMenu>
  1813. <productMenu id="phone"
  1814. type="1" >
  1815. </productMenu>
  1816. <productMenu id="music"
  1817. type="1" >
  1818. </productMenu>
  1819. <productMenu id="musicSharing"
  1820. type="0" >
  1821. </productMenu>
  1822. <productMenu id="deviceSetting"
  1823. type="1"
  1824. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  1825. </productMenu>
  1826. <productMenu id="quickGuide"
  1827. type="0"
  1828. url=""
  1829. size="1.12MB" >
  1830. </productMenu>
  1831. <productMenu id="userGuide"
  1832. type="1"
  1833. url=""
  1834. size="2.0MB" >
  1835. </productMenu>
  1836. <productMenu id="videoGuide"
  1837. type="0"
  1838. url=""
  1839. size="3.41MB" >
  1840. </productMenu>
  1841. <productMenu id="volume"
  1842. type="16" >
  1843. </productMenu>
  1844. <productMenu id="battery"
  1845. type="1" >
  1846. </productMenu>
  1847. <productID id="6A14"
  1848. />
  1849. <productGroupable type="0"
  1850. />
  1851. </product>
  1852. <product id="PHANTOMKV"
  1853. name="PHANTOM KV"
  1854. series="Helmet"
  1855. latestVersion="1.2.2"
  1856. latestVersionVoicePrompt="1.0"
  1857. show = "-1" >
  1858. <productMenu id="protocol"
  1859. type="2" >
  1860. </productMenu>
  1861. <productMenu id="ota"
  1862. type="0" >
  1863. <otaLanguages>
  1864. <otaLanguage
  1865. id="0"
  1866. name="English"
  1867. package="0"
  1868. />
  1869. <otaLanguage
  1870. id="0"
  1871. name="French"
  1872. package="1"
  1873. />
  1874. <otaLanguage
  1875. id="0"
  1876. name="Spanish"
  1877. package="2"
  1878. />
  1879. <otaLanguage
  1880. id="0"
  1881. name="Italian"
  1882. package="3"
  1883. />
  1884. <otaLanguage
  1885. id="0"
  1886. name="German"
  1887. package="4"
  1888. />
  1889. <otaLanguage
  1890. id="0"
  1891. name="Dutch"
  1892. package="5"
  1893. />
  1894. <otaLanguage
  1895. id="0"
  1896. name="Russian"
  1897. package="6"
  1898. />
  1899. <otaLanguage
  1900. id="0"
  1901. name="Chinese"
  1902. package="7"
  1903. />
  1904. <otaLanguage
  1905. id="0"
  1906. name="Korean"
  1907. package="8"
  1908. />
  1909. <otaLanguage
  1910. id="0"
  1911. name="Japanese"
  1912. package="9"
  1913. />
  1914. <otaLanguage
  1915. id="0"
  1916. name="Finnish"
  1917. package="10"
  1918. />
  1919. <otaLanguage
  1920. id="0"
  1921. name="Polish"
  1922. package="11"
  1923. />
  1924. </otaLanguages>
  1925. <otaPackages>
  1926. <package
  1927. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  1928. size="5183988"
  1929. />
  1930. <package
  1931. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  1932. size="5183988"
  1933. />
  1934. <package
  1935. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  1936. size="5183988"
  1937. />
  1938. <package
  1939. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  1940. size="5183988"
  1941. />
  1942. <package
  1943. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  1944. size="5183988"
  1945. />
  1946. <package
  1947. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  1948. size="5183988"
  1949. />
  1950. <package
  1951. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  1952. size="5183988"
  1953. />
  1954. <package
  1955. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  1956. size="5183988"
  1957. />
  1958. <package
  1959. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  1960. size="5183988"
  1961. />
  1962. <package
  1963. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  1964. size="5183988"
  1965. />
  1966. <package
  1967. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  1968. size="5183988"
  1969. />
  1970. <package
  1971. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  1972. size="5183988"
  1973. />
  1974. </otaPackages>
  1975. </productMenu>
  1976. <productMenu id="wa"
  1977. type="0" >
  1978. </productMenu>
  1979. <productMenu id="led"
  1980. type="5" >
  1981. </productMenu>
  1982. <productMenu id="led+"
  1983. type="2"
  1984. url="1" >
  1985. </productMenu>
  1986. <productMenu id="meshIntercom"
  1987. type="30" >
  1988. </productMenu>
  1989. <productMenu id="meshIntercom+"
  1990. type="3"
  1991. url="2" >
  1992. </productMenu>
  1993. <productMenu id="waveIntercom"
  1994. type="1" >
  1995. </productMenu>
  1996. <productMenu id="fmradio"
  1997. type="0" >
  1998. </productMenu>
  1999. <productMenu id="phone"
  2000. type="1" >
  2001. </productMenu>
  2002. <productMenu id="music"
  2003. type="1" >
  2004. </productMenu>
  2005. <productMenu id="musicSharing"
  2006. type="0" >
  2007. </productMenu>
  2008. <productMenu id="deviceSetting"
  2009. type="1"
  2010. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2011. </productMenu>
  2012. <productMenu id="quickGuide"
  2013. type="0"
  2014. url=""
  2015. size="1.12MB" >
  2016. </productMenu>
  2017. <productMenu id="userGuide"
  2018. type="1"
  2019. url=""
  2020. size="2.0MB" >
  2021. </productMenu>
  2022. <productMenu id="videoGuide"
  2023. type="0"
  2024. url=""
  2025. size="3.41MB" >
  2026. </productMenu>
  2027. <productMenu id="volume"
  2028. type="16" >
  2029. </productMenu>
  2030. <productMenu id="battery"
  2031. type="1" >
  2032. </productMenu>
  2033. <productID id="6A13"
  2034. />
  2035. <productGroupable type="0"
  2036. />
  2037. </product>
  2038. <product id="PHANTOMCamera"
  2039. name="PHANTOM Camera"
  2040. series="Helmet"
  2041. latestVersion="1.2.2"
  2042. latestVersionVoicePrompt="1.0"
  2043. show = "-1" >
  2044. <productMenu id="protocol"
  2045. type="2" >
  2046. </productMenu>
  2047. <productMenu id="ota"
  2048. type="0" >
  2049. <otaLanguages>
  2050. <otaLanguage
  2051. id="0"
  2052. name="English"
  2053. package="0"
  2054. />
  2055. <otaLanguage
  2056. id="0"
  2057. name="French"
  2058. package="1"
  2059. />
  2060. <otaLanguage
  2061. id="0"
  2062. name="Spanish"
  2063. package="2"
  2064. />
  2065. <otaLanguage
  2066. id="0"
  2067. name="Italian"
  2068. package="3"
  2069. />
  2070. <otaLanguage
  2071. id="0"
  2072. name="German"
  2073. package="4"
  2074. />
  2075. <otaLanguage
  2076. id="0"
  2077. name="Dutch"
  2078. package="5"
  2079. />
  2080. <otaLanguage
  2081. id="0"
  2082. name="Russian"
  2083. package="6"
  2084. />
  2085. <otaLanguage
  2086. id="0"
  2087. name="Chinese"
  2088. package="7"
  2089. />
  2090. <otaLanguage
  2091. id="0"
  2092. name="Korean"
  2093. package="8"
  2094. />
  2095. <otaLanguage
  2096. id="0"
  2097. name="Japanese"
  2098. package="9"
  2099. />
  2100. <otaLanguage
  2101. id="0"
  2102. name="Finnish"
  2103. package="10"
  2104. />
  2105. <otaLanguage
  2106. id="0"
  2107. name="Polish"
  2108. package="11"
  2109. />
  2110. </otaLanguages>
  2111. <otaPackages>
  2112. <package
  2113. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2114. size="5183988"
  2115. />
  2116. <package
  2117. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2118. size="5183988"
  2119. />
  2120. <package
  2121. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2122. size="5183988"
  2123. />
  2124. <package
  2125. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2126. size="5183988"
  2127. />
  2128. <package
  2129. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2130. size="5183988"
  2131. />
  2132. <package
  2133. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2134. size="5183988"
  2135. />
  2136. <package
  2137. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  2138. size="5183988"
  2139. />
  2140. <package
  2141. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  2142. size="5183988"
  2143. />
  2144. <package
  2145. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  2146. size="5183988"
  2147. />
  2148. <package
  2149. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  2150. size="5183988"
  2151. />
  2152. <package
  2153. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  2154. size="5183988"
  2155. />
  2156. <package
  2157. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  2158. size="5183988"
  2159. />
  2160. </otaPackages>
  2161. </productMenu>
  2162. <productMenu id="wa"
  2163. type="0" >
  2164. </productMenu>
  2165. <productMenu id="led"
  2166. type="5" >
  2167. </productMenu>
  2168. <productMenu id="led+"
  2169. type="2"
  2170. url="1" >
  2171. </productMenu>
  2172. <productMenu id="meshIntercom"
  2173. type="30" >
  2174. </productMenu>
  2175. <productMenu id="meshIntercom+"
  2176. type="3"
  2177. url="2" >
  2178. </productMenu>
  2179. <productMenu id="waveIntercom"
  2180. type="1" >
  2181. </productMenu>
  2182. <productMenu id="fmradio"
  2183. type="0" >
  2184. </productMenu>
  2185. <productMenu id="phone"
  2186. type="1" >
  2187. </productMenu>
  2188. <productMenu id="music"
  2189. type="1" >
  2190. </productMenu>
  2191. <productMenu id="musicSharing"
  2192. type="0" >
  2193. </productMenu>
  2194. <productMenu id="deviceSetting"
  2195. type="1"
  2196. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2197. </productMenu>
  2198. <productMenu id="quickGuide"
  2199. type="0"
  2200. url=""
  2201. size="1.12MB" >
  2202. </productMenu>
  2203. <productMenu id="userGuide"
  2204. type="1"
  2205. url=""
  2206. size="2.0MB" >
  2207. </productMenu>
  2208. <productMenu id="videoGuide"
  2209. type="0"
  2210. url=""
  2211. size="3.41MB" >
  2212. </productMenu>
  2213. <productMenu id="volume"
  2214. type="16" >
  2215. </productMenu>
  2216. <productMenu id="battery"
  2217. type="1" >
  2218. </productMenu>
  2219. <productID id="6A10"
  2220. />
  2221. <productGroupable type="0"
  2222. />
  2223. </product>
  2224. <product id="PHANTOMCamera"
  2225. name="PHANTOM Camera"
  2226. series="Helmet"
  2227. latestVersion="1.2.2"
  2228. latestVersionVoicePrompt="1.0"
  2229. show = "-1" >
  2230. <productMenu id="protocol"
  2231. type="2" >
  2232. </productMenu>
  2233. <productMenu id="ota"
  2234. type="0" >
  2235. <otaLanguages>
  2236. <otaLanguage
  2237. id="0"
  2238. name="English"
  2239. package="0"
  2240. />
  2241. <otaLanguage
  2242. id="0"
  2243. name="French"
  2244. package="1"
  2245. />
  2246. <otaLanguage
  2247. id="0"
  2248. name="Spanish"
  2249. package="2"
  2250. />
  2251. <otaLanguage
  2252. id="0"
  2253. name="Italian"
  2254. package="3"
  2255. />
  2256. <otaLanguage
  2257. id="0"
  2258. name="German"
  2259. package="4"
  2260. />
  2261. <otaLanguage
  2262. id="0"
  2263. name="Dutch"
  2264. package="5"
  2265. />
  2266. <otaLanguage
  2267. id="0"
  2268. name="Russian"
  2269. package="6"
  2270. />
  2271. <otaLanguage
  2272. id="0"
  2273. name="Chinese"
  2274. package="7"
  2275. />
  2276. <otaLanguage
  2277. id="0"
  2278. name="Korean"
  2279. package="8"
  2280. />
  2281. <otaLanguage
  2282. id="0"
  2283. name="Japanese"
  2284. package="9"
  2285. />
  2286. <otaLanguage
  2287. id="0"
  2288. name="Finnish"
  2289. package="10"
  2290. />
  2291. <otaLanguage
  2292. id="0"
  2293. name="Polish"
  2294. package="11"
  2295. />
  2296. </otaLanguages>
  2297. <otaPackages>
  2298. <package
  2299. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  2300. size="5183988"
  2301. />
  2302. <package
  2303. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  2304. size="5183988"
  2305. />
  2306. <package
  2307. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  2308. size="5183988"
  2309. />
  2310. <package
  2311. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  2312. size="5183988"
  2313. />
  2314. <package
  2315. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  2316. size="5183988"
  2317. />
  2318. <package
  2319. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  2320. size="5183988"
  2321. />
  2322. <package
  2323. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  2324. size="5183988"
  2325. />
  2326. <package
  2327. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  2328. size="5183988"
  2329. />
  2330. <package
  2331. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  2332. size="5183988"
  2333. />
  2334. <package
  2335. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  2336. size="5183988"
  2337. />
  2338. <package
  2339. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  2340. size="5183988"
  2341. />
  2342. <package
  2343. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  2344. size="5183988"
  2345. />
  2346. </otaPackages>
  2347. </productMenu>
  2348. <productMenu id="wa"
  2349. type="0" >
  2350. </productMenu>
  2351. <productMenu id="led"
  2352. type="5" >
  2353. </productMenu>
  2354. <productMenu id="led+"
  2355. type="2"
  2356. url="1" >
  2357. </productMenu>
  2358. <productMenu id="meshIntercom"
  2359. type="30" >
  2360. </productMenu>
  2361. <productMenu id="meshIntercom+"
  2362. type="3"
  2363. url="2" >
  2364. </productMenu>
  2365. <productMenu id="waveIntercom"
  2366. type="1" >
  2367. </productMenu>
  2368. <productMenu id="fmradio"
  2369. type="0" >
  2370. </productMenu>
  2371. <productMenu id="phone"
  2372. type="1" >
  2373. </productMenu>
  2374. <productMenu id="music"
  2375. type="1" >
  2376. </productMenu>
  2377. <productMenu id="musicSharing"
  2378. type="0" >
  2379. </productMenu>
  2380. <productMenu id="deviceSetting"
  2381. type="1"
  2382. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2383. </productMenu>
  2384. <productMenu id="quickGuide"
  2385. type="0"
  2386. url=""
  2387. size="1.12MB" >
  2388. </productMenu>
  2389. <productMenu id="userGuide"
  2390. type="1"
  2391. url=""
  2392. size="2.0MB" >
  2393. </productMenu>
  2394. <productMenu id="videoGuide"
  2395. type="0"
  2396. url=""
  2397. size="3.41MB" >
  2398. </productMenu>
  2399. <productMenu id="volume"
  2400. type="16" >
  2401. </productMenu>
  2402. <productMenu id="battery"
  2403. type="1" >
  2404. </productMenu>
  2405. <productID id="6A09"
  2406. />
  2407. <productGroupable type="0"
  2408. />
  2409. </product>
  2410. <product id="PHANTOM"
  2411. name="PHANTOM ANC"
  2412. series="Helmet"
  2413. latestVersion="1.1.4"
  2414. latestVersionVoicePrompt="1.0"
  2415. show = "1" >
  2416. <productMenu id="protocol"
  2417. type="2" >
  2418. </productMenu>
  2419. <productMenu id="ota"
  2420. type="2" >
  2421. <productMenuType version="0.6.9"
  2422. type="0"
  2423. />
  2424. <otaLanguages>
  2425. <otaLanguage
  2426. id="0"
  2427. name="English"
  2428. package="0"
  2429. />
  2430. <otaLanguage
  2431. id="0"
  2432. name="French"
  2433. package="1"
  2434. />
  2435. <otaLanguage
  2436. id="0"
  2437. name="Spanish"
  2438. package="2"
  2439. />
  2440. <otaLanguage
  2441. id="0"
  2442. name="Italian"
  2443. package="3"
  2444. />
  2445. <otaLanguage
  2446. id="0"
  2447. name="German"
  2448. package="4"
  2449. />
  2450. <otaLanguage
  2451. id="0"
  2452. name="Dutch"
  2453. package="5"
  2454. />
  2455. <otaLanguage
  2456. id="0"
  2457. name="Russian"
  2458. package="6"
  2459. />
  2460. <otaLanguage
  2461. id="0"
  2462. name="Chinese"
  2463. package="7"
  2464. />
  2465. <otaLanguage
  2466. id="0"
  2467. name="Korean"
  2468. package="8"
  2469. />
  2470. <otaLanguage
  2471. id="0"
  2472. name="Japanese"
  2473. package="9"
  2474. />
  2475. <otaLanguage
  2476. id="0"
  2477. name="Finnish"
  2478. package="10"
  2479. />
  2480. <otaLanguage
  2481. id="0"
  2482. name="Polish"
  2483. package="11"
  2484. />
  2485. </otaLanguages>
  2486. <otaPackages>
  2487. <package
  2488. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0.img"
  2489. size="5183988"
  2490. />
  2491. <package
  2492. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-fr-FR.img"
  2493. size="5183988"
  2494. />
  2495. <package
  2496. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-es-ES.img"
  2497. size="5183988"
  2498. />
  2499. <package
  2500. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-it-IT.img"
  2501. size="5183988"
  2502. />
  2503. <package
  2504. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-de-DE.img"
  2505. size="5183988"
  2506. />
  2507. <package
  2508. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-nl-NL.img"
  2509. size="5183988"
  2510. />
  2511. <package
  2512. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-ru-RU.img"
  2513. size="5183988"
  2514. />
  2515. <package
  2516. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-cmn-CN.img"
  2517. size="5183988"
  2518. />
  2519. <package
  2520. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-ko-KR.img"
  2521. size="5183988"
  2522. />
  2523. <package
  2524. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-ja-JP.img"
  2525. size="5183988"
  2526. />
  2527. <package
  2528. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-fi-FI.img"
  2529. size="5183988"
  2530. />
  2531. <package
  2532. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-pl-PL.img"
  2533. size="5183988"
  2534. />
  2535. </otaPackages>
  2536. </productMenu>
  2537. <productMenu id="wa"
  2538. type="0" >
  2539. </productMenu>
  2540. <productMenu id="led"
  2541. type="5" >
  2542. </productMenu>
  2543. <productMenu id="led+"
  2544. type="2"
  2545. url="1" >
  2546. </productMenu>
  2547. <productMenu id="meshIntercom"
  2548. type="30" >
  2549. </productMenu>
  2550. <productMenu id="meshIntercom+"
  2551. type="3"
  2552. url="2" >
  2553. <productMenuURL version="1.0.4"
  2554. url="10"
  2555. />
  2556. </productMenu>
  2557. <productMenu id="waveIntercom"
  2558. type="1" >
  2559. <productMenuType version="1.0.9"
  2560. type="0"
  2561. />
  2562. </productMenu>
  2563. <productMenu id="fmradio"
  2564. type="0" >
  2565. </productMenu>
  2566. <productMenu id="phone"
  2567. type="1" >
  2568. </productMenu>
  2569. <productMenu id="music"
  2570. type="1" >
  2571. </productMenu>
  2572. <productMenu id="musicSharing"
  2573. type="0" >
  2574. </productMenu>
  2575. <productMenu id="deviceSetting"
  2576. type="1"
  2577. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2578. <productMenuURL version="1.2.1"
  2579. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2580. />
  2581. <productMenuURL version="1.1.2"
  2582. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  2583. />
  2584. <productMenuURL version="1.0.4"
  2585. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  2586. />
  2587. </productMenu>
  2588. <productMenu id="quickGuide"
  2589. type="0"
  2590. url=""
  2591. size="1.12MB" >
  2592. </productMenu>
  2593. <productMenu id="userGuide"
  2594. type="1"
  2595. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  2596. size="2.0MB" >
  2597. </productMenu>
  2598. <productMenu id="videoGuide"
  2599. type="0"
  2600. url=""
  2601. size="3.41MB" >
  2602. </productMenu>
  2603. <productMenu id="volume"
  2604. type="16" >
  2605. </productMenu>
  2606. <productMenu id="soundMode"
  2607. type="1" >
  2608. <productMenuType version="0.9.11"
  2609. type="0"
  2610. />
  2611. </productMenu>
  2612. <productMenu id="battery"
  2613. type="1" >
  2614. </productMenu>
  2615. <productID id="6A01"
  2616. />
  2617. <productGroupable type="0"
  2618. />
  2619. </product>
  2620. <product id="PHANTOM"
  2621. name="PHANTOM"
  2622. series="Helmet"
  2623. latestVersion="1.2.2"
  2624. latestVersionVoicePrompt="1.0"
  2625. show = "-1" >
  2626. <productMenu id="protocol"
  2627. type="2" >
  2628. </productMenu>
  2629. <productMenu id="ota"
  2630. type="0" >
  2631. <otaLanguages>
  2632. <otaLanguage
  2633. id="0"
  2634. name="English"
  2635. package="0"
  2636. />
  2637. <otaLanguage
  2638. id="0"
  2639. name="French"
  2640. package="1"
  2641. />
  2642. <otaLanguage
  2643. id="0"
  2644. name="Spanish"
  2645. package="2"
  2646. />
  2647. <otaLanguage
  2648. id="0"
  2649. name="Italian"
  2650. package="3"
  2651. />
  2652. <otaLanguage
  2653. id="0"
  2654. name="German"
  2655. package="4"
  2656. />
  2657. <otaLanguage
  2658. id="0"
  2659. name="Dutch"
  2660. package="5"
  2661. />
  2662. <otaLanguage
  2663. id="0"
  2664. name="Russian"
  2665. package="6"
  2666. />
  2667. <otaLanguage
  2668. id="0"
  2669. name="Chinese"
  2670. package="7"
  2671. />
  2672. <otaLanguage
  2673. id="0"
  2674. name="Korean"
  2675. package="8"
  2676. />
  2677. <otaLanguage
  2678. id="0"
  2679. name="Japanese"
  2680. package="9"
  2681. />
  2682. <otaLanguage
  2683. id="0"
  2684. name="Finnish"
  2685. package="10"
  2686. />
  2687. <otaLanguage
  2688. id="0"
  2689. name="Polish"
  2690. package="11"
  2691. />
  2692. </otaLanguages>
  2693. <otaPackages>
  2694. <package
  2695. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMREV-v1.1.4-build0.img"
  2696. size="5183988"
  2697. />
  2698. <package
  2699. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMREV-v1.1.4-build0-fr-FR.img"
  2700. size="5183988"
  2701. />
  2702. <package
  2703. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMREV-v1.1.4-build0-es-ES.img"
  2704. size="5183988"
  2705. />
  2706. <package
  2707. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMREV-v1.1.4-build0-it-IT.img"
  2708. size="5183988"
  2709. />
  2710. <package
  2711. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMREV-v1.1.4-build0-de-DE.img"
  2712. size="5183988"
  2713. />
  2714. <package
  2715. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMREV-v1.1.4-build0-nl-NL.img"
  2716. size="5183988"
  2717. />
  2718. <package
  2719. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMREV-v1.1.4-build0-ru-RU.img"
  2720. size="5183988"
  2721. />
  2722. <package
  2723. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMREV-v1.1.4-build0-cmn-CN.img"
  2724. size="5183988"
  2725. />
  2726. <package
  2727. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMREV-v1.1.4-build0-ko-KR.img"
  2728. size="5183988"
  2729. />
  2730. <package
  2731. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMREV-v1.1.4-build0-ja-JP.img"
  2732. size="5183988"
  2733. />
  2734. <package
  2735. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMREV-v1.1.4-build0-fi-FI.img"
  2736. size="5183988"
  2737. />
  2738. <package
  2739. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMREV-v1.1.4-build0-pl-PL.img"
  2740. size="5183988"
  2741. />
  2742. </otaPackages>
  2743. </productMenu>
  2744. <productMenu id="wa"
  2745. type="0" >
  2746. </productMenu>
  2747. <productMenu id="led"
  2748. type="5" >
  2749. </productMenu>
  2750. <productMenu id="led+"
  2751. type="2"
  2752. url="1" >
  2753. </productMenu>
  2754. <productMenu id="meshIntercom"
  2755. type="30" >
  2756. </productMenu>
  2757. <productMenu id="meshIntercom+"
  2758. type="3"
  2759. url="2" >
  2760. </productMenu>
  2761. <productMenu id="waveIntercom"
  2762. type="1" >
  2763. </productMenu>
  2764. <productMenu id="fmradio"
  2765. type="0" >
  2766. </productMenu>
  2767. <productMenu id="phone"
  2768. type="1" >
  2769. </productMenu>
  2770. <productMenu id="music"
  2771. type="1" >
  2772. </productMenu>
  2773. <productMenu id="musicSharing"
  2774. type="0" >
  2775. </productMenu>
  2776. <productMenu id="deviceSetting"
  2777. type="1"
  2778. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2779. </productMenu>
  2780. <productMenu id="quickGuide"
  2781. type="0"
  2782. url=""
  2783. size="1.52MB" >
  2784. </productMenu>
  2785. <productMenu id="userGuide"
  2786. type="1"
  2787. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  2788. size="2.01MB" >
  2789. </productMenu>
  2790. <productMenu id="videoGuide"
  2791. type="0"
  2792. url=""
  2793. size="3.46MB" >
  2794. </productMenu>
  2795. <productMenu id="connectGuide"
  2796. type="1"
  2797. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  2798. size="1.1MB" >
  2799. </productMenu>
  2800. <productMenu id="volume"
  2801. type="16" >
  2802. </productMenu>
  2803. <productMenu id="battery"
  2804. type="1" >
  2805. </productMenu>
  2806. <productID id="6A0E"
  2807. />
  2808. <productGroupable type="0"
  2809. />
  2810. </product>
  2811. <product id="PHANTOM"
  2812. name="PHANTOM"
  2813. series="Helmet"
  2814. latestVersion="1.1.4"
  2815. latestVersionVoicePrompt="1.0"
  2816. show = "1" >
  2817. <productMenu id="protocol"
  2818. type="2" >
  2819. </productMenu>
  2820. <productMenu id="ota"
  2821. type="2" >
  2822. <otaLanguages>
  2823. <otaLanguage
  2824. id="0"
  2825. name="English"
  2826. package="0"
  2827. />
  2828. <otaLanguage
  2829. id="0"
  2830. name="French"
  2831. package="1"
  2832. />
  2833. <otaLanguage
  2834. id="0"
  2835. name="Spanish"
  2836. package="2"
  2837. />
  2838. <otaLanguage
  2839. id="0"
  2840. name="Italian"
  2841. package="3"
  2842. />
  2843. <otaLanguage
  2844. id="0"
  2845. name="German"
  2846. package="4"
  2847. />
  2848. <otaLanguage
  2849. id="0"
  2850. name="Dutch"
  2851. package="5"
  2852. />
  2853. <otaLanguage
  2854. id="0"
  2855. name="Russian"
  2856. package="6"
  2857. />
  2858. <otaLanguage
  2859. id="0"
  2860. name="Chinese"
  2861. package="7"
  2862. />
  2863. <otaLanguage
  2864. id="0"
  2865. name="Korean"
  2866. package="8"
  2867. />
  2868. <otaLanguage
  2869. id="0"
  2870. name="Japanese"
  2871. package="9"
  2872. />
  2873. <otaLanguage
  2874. id="0"
  2875. name="Finnish"
  2876. package="10"
  2877. />
  2878. <otaLanguage
  2879. id="0"
  2880. name="Polish"
  2881. package="11"
  2882. />
  2883. </otaLanguages>
  2884. <otaPackages>
  2885. <package
  2886. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0.img"
  2887. size="5183988"
  2888. />
  2889. <package
  2890. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  2891. size="5183988"
  2892. />
  2893. <package
  2894. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  2895. size="5183988"
  2896. />
  2897. <package
  2898. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  2899. size="5183988"
  2900. />
  2901. <package
  2902. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  2903. size="5183988"
  2904. />
  2905. <package
  2906. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  2907. size="5183988"
  2908. />
  2909. <package
  2910. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  2911. size="5183988"
  2912. />
  2913. <package
  2914. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  2915. size="5183988"
  2916. />
  2917. <package
  2918. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  2919. size="5183988"
  2920. />
  2921. <package
  2922. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  2923. size="5183988"
  2924. />
  2925. <package
  2926. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  2927. size="5183988"
  2928. />
  2929. <package
  2930. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-pl-PL.img"
  2931. size="5183988"
  2932. />
  2933. </otaPackages>
  2934. </productMenu>
  2935. <productMenu id="wa"
  2936. type="0" >
  2937. </productMenu>
  2938. <productMenu id="led"
  2939. type="5" >
  2940. <productMenuType version="1.0.1"
  2941. type="4"
  2942. />
  2943. </productMenu>
  2944. <productMenu id="led+"
  2945. type="2"
  2946. url="1" >
  2947. <productMenuType version="1.0.1"
  2948. type="-1"
  2949. />
  2950. </productMenu>
  2951. <productMenu id="meshIntercom"
  2952. type="30" >
  2953. </productMenu>
  2954. <productMenu id="meshIntercom+"
  2955. type="3"
  2956. url="2" >
  2957. <productMenuURL version="1.0.4"
  2958. url="10"
  2959. />
  2960. </productMenu>
  2961. <productMenu id="waveIntercom"
  2962. type="1" >
  2963. <productMenuType version="1.0.9"
  2964. type="0"
  2965. />
  2966. </productMenu>
  2967. <productMenu id="fmradio"
  2968. type="0" >
  2969. </productMenu>
  2970. <productMenu id="phone"
  2971. type="1" >
  2972. </productMenu>
  2973. <productMenu id="music"
  2974. type="1" >
  2975. </productMenu>
  2976. <productMenu id="musicSharing"
  2977. type="0" >
  2978. </productMenu>
  2979. <productMenu id="deviceSetting"
  2980. type="1"
  2981. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2982. <productMenuURL version="1.2.1"
  2983. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2984. />
  2985. <productMenuURL version="1.0.4"
  2986. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  2987. />
  2988. <productMenuURL version="1.0.1"
  2989. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  2990. />
  2991. </productMenu>
  2992. <productMenu id="quickGuide"
  2993. type="0"
  2994. url=""
  2995. size="1.12MB" >
  2996. </productMenu>
  2997. <productMenu id="userGuide"
  2998. type="1"
  2999. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  3000. size="2.0MB" >
  3001. </productMenu>
  3002. <productMenu id="videoGuide"
  3003. type="0"
  3004. url=""
  3005. size="3.41MB" >
  3006. </productMenu>
  3007. <productMenu id="connectGuide"
  3008. type="1"
  3009. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3010. size="1.12MB" >
  3011. </productMenu>
  3012. <productMenu id="volume"
  3013. type="16" >
  3014. <productMenuType version="1.0"
  3015. type="13"
  3016. />
  3017. </productMenu>
  3018. <productMenu id="battery"
  3019. type="1" >
  3020. </productMenu>
  3021. <productID id="6A04"
  3022. />
  3023. <productGroupable type="0"
  3024. />
  3025. </product>
  3026. <product id="SPIDERSlim"
  3027. name="SPIDER Slim"
  3028. series="SPIDER"
  3029. latestVersion="0.1.11"
  3030. latestVersionVoicePrompt="1.1"
  3031. show = "-1" >
  3032. <productMenu id="protocol"
  3033. type="2" >
  3034. </productMenu>
  3035. <productMenu id="ota"
  3036. type="0" >
  3037. <otaLanguages>
  3038. <otaLanguage
  3039. id="0"
  3040. name="English"
  3041. package="0"
  3042. />
  3043. <otaLanguage
  3044. id="0"
  3045. name="French"
  3046. package="1"
  3047. />
  3048. <otaLanguage
  3049. id="0"
  3050. name="Spanish"
  3051. package="2"
  3052. />
  3053. <otaLanguage
  3054. id="0"
  3055. name="Italian"
  3056. package="3"
  3057. />
  3058. <otaLanguage
  3059. id="0"
  3060. name="German"
  3061. package="4"
  3062. />
  3063. <otaLanguage
  3064. id="0"
  3065. name="Dutch"
  3066. package="5"
  3067. />
  3068. <otaLanguage
  3069. id="0"
  3070. name="Russian"
  3071. package="6"
  3072. />
  3073. <otaLanguage
  3074. id="0"
  3075. name="Chinese"
  3076. package="7"
  3077. />
  3078. <otaLanguage
  3079. id="0"
  3080. name="Korean"
  3081. package="8"
  3082. />
  3083. <otaLanguage
  3084. id="0"
  3085. name="Japanese"
  3086. package="9"
  3087. />
  3088. <otaLanguage
  3089. id="0"
  3090. name="Finnish"
  3091. package="10"
  3092. />
  3093. <otaLanguage
  3094. id="0"
  3095. name="Polish"
  3096. package="11"
  3097. />
  3098. </otaLanguages>
  3099. <otaPackages>
  3100. <package
  3101. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0.img"
  3102. size="5183988"
  3103. />
  3104. <package
  3105. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-fr-FR.img"
  3106. size="5183988"
  3107. />
  3108. <package
  3109. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-es-ES.img"
  3110. size="5183988"
  3111. />
  3112. <package
  3113. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-it-IT.img"
  3114. size="5183988"
  3115. />
  3116. <package
  3117. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-de-DE.img"
  3118. size="5183988"
  3119. />
  3120. <package
  3121. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-nl-NL.img"
  3122. size="5183988"
  3123. />
  3124. <package
  3125. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ru-RU.img"
  3126. size="5183988"
  3127. />
  3128. <package
  3129. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-cmn-CN.img"
  3130. size="5183988"
  3131. />
  3132. <package
  3133. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ko-KR.img"
  3134. size="5183988"
  3135. />
  3136. <package
  3137. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ja-JP.img"
  3138. size="5183988"
  3139. />
  3140. <package
  3141. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-fi-FI.img"
  3142. size="5183988"
  3143. />
  3144. <package
  3145. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-pl-PL.img"
  3146. size="5183988"
  3147. />
  3148. </otaPackages>
  3149. </productMenu>
  3150. <productMenu id="wa"
  3151. type="0" >
  3152. </productMenu>
  3153. <productMenu id="led"
  3154. type="5" >
  3155. </productMenu>
  3156. <productMenu id="led+"
  3157. type="2"
  3158. url="1" >
  3159. </productMenu>
  3160. <productMenu id="meshIntercom"
  3161. type="30" >
  3162. </productMenu>
  3163. <productMenu id="meshIntercom+"
  3164. type="3"
  3165. url="2" >
  3166. </productMenu>
  3167. <productMenu id="waveIntercom"
  3168. type="1" >
  3169. </productMenu>
  3170. <productMenu id="fmradio"
  3171. type="0" >
  3172. </productMenu>
  3173. <productMenu id="phone"
  3174. type="1" >
  3175. </productMenu>
  3176. <productMenu id="music"
  3177. type="1" >
  3178. </productMenu>
  3179. <productMenu id="musicSharing"
  3180. type="0" >
  3181. </productMenu>
  3182. <productMenu id="deviceSetting"
  3183. type="1"
  3184. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3185. </productMenu>
  3186. <productMenu id="quickGuide"
  3187. type="0"
  3188. url=""
  3189. size="1.12MB" >
  3190. </productMenu>
  3191. <productMenu id="userGuide"
  3192. type="1"
  3193. url=""
  3194. size="2.0MB" >
  3195. </productMenu>
  3196. <productMenu id="videoGuide"
  3197. type="0"
  3198. url=""
  3199. size="3.41MB" >
  3200. </productMenu>
  3201. <productMenu id="volume"
  3202. type="16" >
  3203. </productMenu>
  3204. <productMenu id="battery"
  3205. type="1" >
  3206. </productMenu>
  3207. <productID id="6A07"
  3208. />
  3209. <productGroupable type="0"
  3210. />
  3211. </product>
  3212. <product id="VORTEXMESH"
  3213. name="VORTEX MESH"
  3214. series="Helmet"
  3215. latestVersion="0.1.11"
  3216. latestVersionVoicePrompt="1.1"
  3217. show = "-1" >
  3218. <productMenu id="protocol"
  3219. type="2" >
  3220. </productMenu>
  3221. <productMenu id="ota"
  3222. type="0" >
  3223. <otaLanguages>
  3224. <otaLanguage
  3225. id="0"
  3226. name="English"
  3227. package="0"
  3228. />
  3229. <otaLanguage
  3230. id="0"
  3231. name="French"
  3232. package="1"
  3233. />
  3234. <otaLanguage
  3235. id="0"
  3236. name="Spanish"
  3237. package="2"
  3238. />
  3239. <otaLanguage
  3240. id="0"
  3241. name="Italian"
  3242. package="3"
  3243. />
  3244. <otaLanguage
  3245. id="0"
  3246. name="German"
  3247. package="4"
  3248. />
  3249. <otaLanguage
  3250. id="0"
  3251. name="Dutch"
  3252. package="5"
  3253. />
  3254. <otaLanguage
  3255. id="0"
  3256. name="Russian"
  3257. package="6"
  3258. />
  3259. <otaLanguage
  3260. id="0"
  3261. name="Chinese"
  3262. package="7"
  3263. />
  3264. <otaLanguage
  3265. id="0"
  3266. name="Korean"
  3267. package="8"
  3268. />
  3269. <otaLanguage
  3270. id="0"
  3271. name="Japanese"
  3272. package="9"
  3273. />
  3274. <otaLanguage
  3275. id="0"
  3276. name="Finnish"
  3277. package="10"
  3278. />
  3279. <otaLanguage
  3280. id="0"
  3281. name="Polish"
  3282. package="11"
  3283. />
  3284. </otaLanguages>
  3285. <otaPackages>
  3286. <package
  3287. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  3288. size="5183988"
  3289. />
  3290. <package
  3291. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  3292. size="5183988"
  3293. />
  3294. <package
  3295. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  3296. size="5183988"
  3297. />
  3298. <package
  3299. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  3300. size="5183988"
  3301. />
  3302. <package
  3303. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  3304. size="5183988"
  3305. />
  3306. <package
  3307. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  3308. size="5183988"
  3309. />
  3310. <package
  3311. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  3312. size="5183988"
  3313. />
  3314. <package
  3315. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  3316. size="5183988"
  3317. />
  3318. <package
  3319. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  3320. size="5183988"
  3321. />
  3322. <package
  3323. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  3324. size="5183988"
  3325. />
  3326. <package
  3327. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  3328. size="5183988"
  3329. />
  3330. <package
  3331. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  3332. size="5183988"
  3333. />
  3334. </otaPackages>
  3335. </productMenu>
  3336. <productMenu id="wa"
  3337. type="0" >
  3338. </productMenu>
  3339. <productMenu id="led"
  3340. type="5" >
  3341. </productMenu>
  3342. <productMenu id="led+"
  3343. type="2"
  3344. url="1" >
  3345. </productMenu>
  3346. <productMenu id="meshIntercom"
  3347. type="30" >
  3348. </productMenu>
  3349. <productMenu id="meshIntercom+"
  3350. type="3"
  3351. url="2" >
  3352. </productMenu>
  3353. <productMenu id="waveIntercom"
  3354. type="1" >
  3355. </productMenu>
  3356. <productMenu id="fmradio"
  3357. type="0" >
  3358. </productMenu>
  3359. <productMenu id="phone"
  3360. type="1" >
  3361. </productMenu>
  3362. <productMenu id="music"
  3363. type="1" >
  3364. </productMenu>
  3365. <productMenu id="musicSharing"
  3366. type="0" >
  3367. </productMenu>
  3368. <productMenu id="deviceSetting"
  3369. type="1"
  3370. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3371. </productMenu>
  3372. <productMenu id="quickGuide"
  3373. type="0"
  3374. url=""
  3375. size="1.12MB" >
  3376. </productMenu>
  3377. <productMenu id="userGuide"
  3378. type="1"
  3379. url=""
  3380. size="2.0MB" >
  3381. </productMenu>
  3382. <productMenu id="videoGuide"
  3383. type="0"
  3384. url=""
  3385. size="3.41MB" >
  3386. </productMenu>
  3387. <productMenu id="volume"
  3388. type="16" >
  3389. </productMenu>
  3390. <productMenu id="battery"
  3391. type="1" >
  3392. </productMenu>
  3393. <productID id="6A12"
  3394. />
  3395. <productGroupable type="0"
  3396. />
  3397. </product>
  3398. <product id="Impulse"
  3399. name="Impulse"
  3400. series="Helmet"
  3401. latestVersion="1.4"
  3402. show = "1" >
  3403. <productMenu id="protocol"
  3404. type="2" >
  3405. </productMenu>
  3406. <productMenu id="alexa"
  3407. type="0" >
  3408. </productMenu>
  3409. <productMenu id="ota"
  3410. type="0" >
  3411. </productMenu>
  3412. <productMenu id="wa"
  3413. type="24" >
  3414. </productMenu>
  3415. <productMenu id="manager"
  3416. type="0" >
  3417. </productMenu>
  3418. <productMenu id="sip"
  3419. type="1" >
  3420. </productMenu>
  3421. <productMenu id="led"
  3422. type="1" >
  3423. <productMenuType version="1.0.1"
  3424. type="2"
  3425. />
  3426. <productMenuType version="1.0"
  3427. type="1"
  3428. />
  3429. </productMenu>
  3430. <productMenu id="meshIntercom"
  3431. type="30" >
  3432. <productMenuType version="1.1.1"
  3433. type="20"
  3434. />
  3435. </productMenu>
  3436. <productMenu id="meshIntercom+"
  3437. type="3"
  3438. url="2" >
  3439. <productMenuType version="1.3.9"
  3440. type="2"
  3441. />
  3442. <productMenuURL version="1.1.1"
  3443. url="0"
  3444. />
  3445. </productMenu>
  3446. <productMenu id="waveIntercom"
  3447. type="1" >
  3448. <productMenuType version="1.3.9"
  3449. type="0"
  3450. />
  3451. </productMenu>
  3452. <productMenu id="bluetoothIntercom"
  3453. type="1" >
  3454. </productMenu>
  3455. <productMenu id="phone"
  3456. type="1" >
  3457. </productMenu>
  3458. <productMenu id="music"
  3459. type="1" >
  3460. </productMenu>
  3461. <productMenu id="fmradio"
  3462. type="1" >
  3463. </productMenu>
  3464. <productMenu id="deviceSetting"
  3465. type="1"
  3466. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  3467. <productMenuURL version="1.3.9"
  3468. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  3469. />
  3470. <productMenuURL version="1.1.1"
  3471. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  3472. />
  3473. <productMenuURL version="1.0.4"
  3474. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  3475. />
  3476. </productMenu>
  3477. <productMenu id="quickGuide"
  3478. type="0"
  3479. url=""
  3480. size="344KB" >
  3481. </productMenu>
  3482. <productMenu id="userGuide"
  3483. type="1"
  3484. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  3485. size="3.41MB" >
  3486. </productMenu>
  3487. <productMenu id="connectGuide"
  3488. type="1"
  3489. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  3490. size="1.12MB" >
  3491. </productMenu>
  3492. <productMenu id="volume"
  3493. type="11" >
  3494. </productMenu>
  3495. <productMenu id="battery"
  3496. type="1" >
  3497. </productMenu>
  3498. <productID id="3148"
  3499. />
  3500. <productGroupable type="0"
  3501. />
  3502. </product>
  3503. <product id="Impulse"
  3504. name="Impulse"
  3505. series="Helmet"
  3506. latestVersion="2.0"
  3507. show = "-1" >
  3508. <productMenu id="protocol"
  3509. type="2" >
  3510. </productMenu>
  3511. <productMenu id="alexa"
  3512. type="0" >
  3513. </productMenu>
  3514. <productMenu id="ota"
  3515. type="0" >
  3516. </productMenu>
  3517. <productMenu id="wa"
  3518. type="8" >
  3519. </productMenu>
  3520. <productMenu id="manager"
  3521. type="0" >
  3522. </productMenu>
  3523. <productMenu id="sip"
  3524. type="1" >
  3525. </productMenu>
  3526. <productMenu id="led"
  3527. type="3" >
  3528. </productMenu>
  3529. <productMenu id="meshIntercom"
  3530. type="20" >
  3531. </productMenu>
  3532. <productMenu id="bluetoothIntercom"
  3533. type="1" >
  3534. </productMenu>
  3535. <productMenu id="phone"
  3536. type="1" >
  3537. </productMenu>
  3538. <productMenu id="music"
  3539. type="1" >
  3540. </productMenu>
  3541. <productMenu id="fmradio"
  3542. type="1" >
  3543. </productMenu>
  3544. <productMenu id="deviceSetting"
  3545. type="1"
  3546. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  3547. </productMenu>
  3548. <productMenu id="quickGuide"
  3549. type="1"
  3550. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  3551. size="344KB" >
  3552. </productMenu>
  3553. <productMenu id="userGuide"
  3554. type="1"
  3555. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  3556. size="3.41MB" >
  3557. </productMenu>
  3558. <productMenu id="volume"
  3559. type="11" >
  3560. </productMenu>
  3561. <productMenu id="battery"
  3562. type="1" >
  3563. </productMenu>
  3564. <productID id="3221"
  3565. />
  3566. <productGroupable type="0"
  3567. />
  3568. </product>
  3569. <product id="Stryker"
  3570. name="Stryker"
  3571. series="Helmet"
  3572. latestVersion="1.4"
  3573. show = "1" >
  3574. <productMenu id="protocol"
  3575. type="2" >
  3576. </productMenu>
  3577. <productMenu id="alexa"
  3578. type="0" >
  3579. </productMenu>
  3580. <productMenu id="ota"
  3581. type="0" >
  3582. </productMenu>
  3583. <productMenu id="wa"
  3584. type="40" >
  3585. </productMenu>
  3586. <productMenu id="manager"
  3587. type="0" >
  3588. </productMenu>
  3589. <productMenu id="sip"
  3590. type="1" >
  3591. </productMenu>
  3592. <productMenu id="led"
  3593. type="1" >
  3594. <productMenuType version="1.0.1"
  3595. type="2"
  3596. />
  3597. <productMenuType version="1.0"
  3598. type="1"
  3599. />
  3600. </productMenu>
  3601. <productMenu id="meshIntercom"
  3602. type="30" >
  3603. <productMenuType version="1.1.1"
  3604. type="20"
  3605. />
  3606. </productMenu>
  3607. <productMenu id="meshIntercom+"
  3608. type="3"
  3609. url="2" >
  3610. <productMenuType version="1.3.9"
  3611. type="2"
  3612. />
  3613. <productMenuURL version="1.1.1"
  3614. url="0"
  3615. />
  3616. </productMenu>
  3617. <productMenu id="waveIntercom"
  3618. type="1" >
  3619. <productMenuType version="1.2.9"
  3620. type="0"
  3621. />
  3622. </productMenu>
  3623. <productMenu id="bluetoothIntercom"
  3624. type="1" >
  3625. </productMenu>
  3626. <productMenu id="phone"
  3627. type="1" >
  3628. </productMenu>
  3629. <productMenu id="music"
  3630. type="1" >
  3631. </productMenu>
  3632. <productMenu id="fmradio"
  3633. type="1" >
  3634. </productMenu>
  3635. <productMenu id="deviceSetting"
  3636. type="1"
  3637. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  3638. <productMenuURL version="1.3.9"
  3639. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  3640. />
  3641. <productMenuURL version="1.1.1"
  3642. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  3643. />
  3644. <productMenuURL version="1.0.4"
  3645. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  3646. />
  3647. </productMenu>
  3648. <productMenu id="quickGuide"
  3649. type="0"
  3650. url=""
  3651. size="344KB" >
  3652. </productMenu>
  3653. <productMenu id="userGuide"
  3654. type="1"
  3655. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  3656. size="3.41MB" >
  3657. </productMenu>
  3658. <productMenu id="connectGuide"
  3659. type="1"
  3660. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  3661. size="1.12MB" >
  3662. </productMenu>
  3663. <productMenu id="volume"
  3664. type="11" >
  3665. </productMenu>
  3666. <productMenu id="battery"
  3667. type="1" >
  3668. </productMenu>
  3669. <productID id="3154"
  3670. />
  3671. <productGroupable type="0"
  3672. />
  3673. </product>
  3674. <product id="SRL3"
  3675. name="SRL3"
  3676. series="SRL"
  3677. latestVersion="1.5"
  3678. show = "1" >
  3679. <productMenu id="protocol"
  3680. type="2" >
  3681. </productMenu>
  3682. <productMenu id="alexa"
  3683. type="0" >
  3684. </productMenu>
  3685. <productMenu id="ota"
  3686. type="0" >
  3687. </productMenu>
  3688. <productMenu id="wa"
  3689. type="1" >
  3690. </productMenu>
  3691. <productMenu id="sip"
  3692. type="1" >
  3693. </productMenu>
  3694. <productMenu id="meshIntercom"
  3695. type="30" >
  3696. </productMenu>
  3697. <productMenu id="meshIntercom+"
  3698. type="3"
  3699. url="2" >
  3700. <productMenuType version="1.3.9"
  3701. type="2"
  3702. />
  3703. </productMenu>
  3704. <productMenu id="waveIntercom"
  3705. type="1" >
  3706. <productMenuType version="1.4.9"
  3707. type="0"
  3708. />
  3709. </productMenu>
  3710. <productMenu id="bluetoothIntercom"
  3711. type="1" >
  3712. </productMenu>
  3713. <productMenu id="phone"
  3714. type="1" >
  3715. </productMenu>
  3716. <productMenu id="music"
  3717. type="1" >
  3718. </productMenu>
  3719. <productMenu id="fmradio"
  3720. type="1" >
  3721. </productMenu>
  3722. <productMenu id="deviceSetting"
  3723. type="1"
  3724. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  3725. <productMenuURL version="1.3"
  3726. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  3727. />
  3728. </productMenu>
  3729. <productMenu id="quickGuide"
  3730. type="0"
  3731. url=""
  3732. size="344KB" >
  3733. </productMenu>
  3734. <productMenu id="userGuide"
  3735. type="1"
  3736. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  3737. size="3.41MB" >
  3738. </productMenu>
  3739. <productMenu id="connectGuide"
  3740. type="1"
  3741. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  3742. size="1.12MB" >
  3743. </productMenu>
  3744. <productMenu id="volume"
  3745. type="11" >
  3746. </productMenu>
  3747. <productMenu id="battery"
  3748. type="1" >
  3749. </productMenu>
  3750. <productID id="3219"
  3751. />
  3752. <productGroupable type="0"
  3753. />
  3754. </product>
  3755. <product id="SRL_Mesh"
  3756. name="SRL-Mesh"
  3757. series="SRL"
  3758. latestVersion="1.7"
  3759. show = "1" >
  3760. <productMenu id="protocol"
  3761. type="2" >
  3762. </productMenu>
  3763. <productMenu id="alexa"
  3764. type="0" >
  3765. </productMenu>
  3766. <productMenu id="ota"
  3767. type="0" >
  3768. </productMenu>
  3769. <productMenu id="wa"
  3770. type="1" >
  3771. </productMenu>
  3772. <productMenu id="sip"
  3773. type="1" >
  3774. </productMenu>
  3775. <productMenu id="meshIntercom"
  3776. type="30" >
  3777. <productMenuType version="1.1.1"
  3778. type="20"
  3779. />
  3780. </productMenu>
  3781. <productMenu id="meshIntercom+"
  3782. type="3"
  3783. url="2" >
  3784. <productMenuType version="1.5.9"
  3785. type="2"
  3786. />
  3787. <productMenuURL version="1.1.1"
  3788. url="0"
  3789. />
  3790. </productMenu>
  3791. <productMenu id="waveIntercom"
  3792. type="1" >
  3793. <productMenuType version="1.6.9"
  3794. type="0"
  3795. />
  3796. </productMenu>
  3797. <productMenu id="bluetoothIntercom"
  3798. type="1" >
  3799. </productMenu>
  3800. <productMenu id="phone"
  3801. type="1" >
  3802. </productMenu>
  3803. <productMenu id="music"
  3804. type="1" >
  3805. </productMenu>
  3806. <productMenu id="fmradio"
  3807. type="1" >
  3808. </productMenu>
  3809. <productMenu id="deviceSetting"
  3810. type="1"
  3811. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  3812. <productMenuURL version="1.5"
  3813. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  3814. />
  3815. <productMenuURL version="1.1.1"
  3816. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  3817. />
  3818. <productMenuURL version="1.0.3"
  3819. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  3820. />
  3821. </productMenu>
  3822. <productMenu id="quickGuide"
  3823. type="0"
  3824. url=""
  3825. size="344KB" >
  3826. </productMenu>
  3827. <productMenu id="userGuide"
  3828. type="1"
  3829. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  3830. size="3.41MB" >
  3831. </productMenu>
  3832. <productMenu id="connectGuide"
  3833. type="1"
  3834. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  3835. size="1.12MB" >
  3836. </productMenu>
  3837. <productMenu id="volume"
  3838. type="11" >
  3839. </productMenu>
  3840. <productMenu id="battery"
  3841. type="1" >
  3842. </productMenu>
  3843. <productID id="3216"
  3844. />
  3845. <productGroupable type="0"
  3846. />
  3847. </product>
  3848. <product id="SRL_EXT"
  3849. name="SRL-EXT"
  3850. series="SRL"
  3851. latestVersion="1.7"
  3852. show = "1" >
  3853. <productMenu id="protocol"
  3854. type="2" >
  3855. </productMenu>
  3856. <productMenu id="alexa"
  3857. type="0" >
  3858. </productMenu>
  3859. <productMenu id="ota"
  3860. type="0" >
  3861. </productMenu>
  3862. <productMenu id="wa"
  3863. type="0" >
  3864. </productMenu>
  3865. <productMenu id="sip"
  3866. type="1" >
  3867. </productMenu>
  3868. <productMenu id="meshIntercom"
  3869. type="30" >
  3870. <productMenuType version="1.1.1"
  3871. type="20"
  3872. />
  3873. </productMenu>
  3874. <productMenu id="meshIntercom+"
  3875. type="3"
  3876. url="2" >
  3877. <productMenuType version="1.5.9"
  3878. type="2"
  3879. />
  3880. <productMenuURL version="1.1.1"
  3881. url="0"
  3882. />
  3883. </productMenu>
  3884. <productMenu id="waveIntercom"
  3885. type="1" >
  3886. <productMenuType version="1.6.9"
  3887. type="0"
  3888. />
  3889. </productMenu>
  3890. <productMenu id="bluetoothIntercom"
  3891. type="1" >
  3892. </productMenu>
  3893. <productMenu id="phone"
  3894. type="1" >
  3895. </productMenu>
  3896. <productMenu id="music"
  3897. type="1" >
  3898. </productMenu>
  3899. <productMenu id="fmradio"
  3900. type="1" >
  3901. </productMenu>
  3902. <productMenu id="deviceSetting"
  3903. type="1"
  3904. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  3905. <productMenuURL version="1.5"
  3906. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  3907. />
  3908. <productMenuURL version="1.1.1"
  3909. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  3910. />
  3911. <productMenuURL version="1.0.3"
  3912. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  3913. />
  3914. </productMenu>
  3915. <productMenu id="quickGuide"
  3916. type="0"
  3917. url=""
  3918. size="344KB" >
  3919. </productMenu>
  3920. <productMenu id="userGuide"
  3921. type="1"
  3922. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  3923. size="3.41MB" >
  3924. </productMenu>
  3925. <productMenu id="connectGuide"
  3926. type="1"
  3927. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  3928. size="1.12MB" >
  3929. </productMenu>
  3930. <productMenu id="volume"
  3931. type="11" >
  3932. </productMenu>
  3933. <productMenu id="battery"
  3934. type="1" >
  3935. </productMenu>
  3936. <productID id="3212"
  3937. />
  3938. <productGroupable type="0"
  3939. />
  3940. </product>
  3941. <product id="SRL2"
  3942. name="SRL2"
  3943. series="SRL"
  3944. latestVersion="1.0.9"
  3945. show = "1" >
  3946. <productMenu id="protocol"
  3947. type="0">
  3948. </productMenu>
  3949. <productMenu id="sip"
  3950. type="1" >
  3951. </productMenu>
  3952. <productMenu id="bluetoothIntercom"
  3953. type="1" >
  3954. </productMenu>
  3955. <productMenu id="intercomSetting"
  3956. type="1" >
  3957. </productMenu>
  3958. <productMenu id="phone"
  3959. type="2" >
  3960. </productMenu>
  3961. <productMenu id="fmradio"
  3962. type="3" >
  3963. </productMenu>
  3964. <productMenu id="deviceSetting"
  3965. type="1"
  3966. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3967. </productMenu>
  3968. <productMenu id="quickGuide"
  3969. type="1"
  3970. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  3971. size="846KB" >
  3972. </productMenu>
  3973. <productMenu id="userGuide"
  3974. type="1"
  3975. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  3976. size="1.18MB" >
  3977. </productMenu>
  3978. <productMenu id="connectGuide"
  3979. type="1"
  3980. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  3981. size="1.12MB" >
  3982. </productMenu>
  3983. <productID id="4530"
  3984. />
  3985. <productGroupable type="1"
  3986. />
  3987. </product>
  3988. <product id="Neotec2"
  3989. name="SRL Neotec2"
  3990. series="SRL"
  3991. latestVersion="1.1.5"
  3992. show = "1" >
  3993. <productMenu id="protocol"
  3994. type="0">
  3995. </productMenu>
  3996. <productMenu id="sip"
  3997. type="1" >
  3998. </productMenu>
  3999. <productMenu id="bluetoothIntercom"
  4000. type="1" >
  4001. </productMenu>
  4002. <productMenu id="intercomSetting"
  4003. type="1" >
  4004. </productMenu>
  4005. <productMenu id="phone"
  4006. type="2" >
  4007. </productMenu>
  4008. <productMenu id="fmradio"
  4009. type="3" >
  4010. </productMenu>
  4011. <productMenu id="deviceSetting"
  4012. type="1"
  4013. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4014. </productMenu>
  4015. <productMenu id="quickGuide"
  4016. type="0"
  4017. url=""
  4018. size="796KB" >
  4019. </productMenu>
  4020. <productMenu id="userGuide"
  4021. type="1"
  4022. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  4023. size="1.90MB" >
  4024. </productMenu>
  4025. <productMenu id="connectGuide"
  4026. type="1"
  4027. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  4028. size="1.12MB" >
  4029. </productMenu>
  4030. <productID id="4510"
  4031. />
  4032. <productGroupable type="1"
  4033. />
  4034. </product>
  4035. <product id="SPIDERST2ANC"
  4036. name="SPIDER ST2 ANC"
  4037. series="SPIDER"
  4038. latestVersion="0.5.1"
  4039. latestVersionVoicePrompt="0.2"
  4040. latestVersionMesh="0.8"
  4041. show = "-1" >
  4042. <productMenu id="protocol"
  4043. type="2" >
  4044. </productMenu>
  4045. <productMenu id="ota"
  4046. type="0" >
  4047. <otaPackages>
  4048. <package
  4049. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  4050. size="2945812"
  4051. />
  4052. </otaPackages>
  4053. </productMenu>
  4054. <productMenu id="wa"
  4055. type="0" >
  4056. </productMenu>
  4057. <productMenu id="led"
  4058. type="1" >
  4059. </productMenu>
  4060. <productMenu id="meshIntercom"
  4061. type="30" >
  4062. </productMenu>
  4063. <productMenu id="fmradio"
  4064. type="1" >
  4065. </productMenu>
  4066. <productMenu id="phone"
  4067. type="1" >
  4068. </productMenu>
  4069. <productMenu id="music"
  4070. type="1" >
  4071. </productMenu>
  4072. <productMenu id="musicSharing"
  4073. type="0" >
  4074. </productMenu>
  4075. <productMenu id="deviceSetting"
  4076. type="1"
  4077. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_02.xml" >
  4078. </productMenu>
  4079. <productMenu id="quickGuide"
  4080. type="1"
  4081. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  4082. size="1.12MB" >
  4083. </productMenu>
  4084. <productMenu id="userGuide"
  4085. type="1"
  4086. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  4087. size="2.0MB" >
  4088. </productMenu>
  4089. <productMenu id="videoGuide"
  4090. type="1"
  4091. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  4092. size="3.41MB" >
  4093. </productMenu>
  4094. <productMenu id="volume"
  4095. type="12" >
  4096. </productMenu>
  4097. <productMenu id="battery"
  4098. type="1" >
  4099. </productMenu>
  4100. <productID id="6A00"
  4101. />
  4102. <productGroupable type="0"
  4103. />
  4104. </product>
  4105. <product id="SPIDER_ST1"
  4106. name="SPIDER ST1"
  4107. series="SPIDER"
  4108. latestVersion="2.5"
  4109. latestVersionVoicePrompt="1.1"
  4110. show = "1" >
  4111. <productMenu id="protocol"
  4112. type="2" >
  4113. </productMenu>
  4114. <productMenu id="alexa"
  4115. type="0" >
  4116. </productMenu>
  4117. <productMenu id="ota"
  4118. type="2" >
  4119. <productMenuType version="2.1.9"
  4120. type="0"
  4121. />
  4122. <otaPackages>
  4123. <package
  4124. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5-build1.img"
  4125. size="2945812"
  4126. />
  4127. </otaPackages>
  4128. </productMenu>
  4129. <productMenu id="wa"
  4130. type="0" >
  4131. </productMenu>
  4132. <productMenu id="meshIntercom"
  4133. type="30" >
  4134. <productMenuType version="2.1.1"
  4135. type="20"
  4136. />
  4137. </productMenu>
  4138. <productMenu id="meshIntercom+"
  4139. type="3"
  4140. url="2" >
  4141. <productMenuType version="2.2.9"
  4142. type="2"
  4143. />
  4144. <productMenuURL version="2.1.1"
  4145. url="0"
  4146. />
  4147. </productMenu>
  4148. <productMenu id="waveIntercom"
  4149. type="1" >
  4150. <productMenuType version="2.3.9"
  4151. type="0"
  4152. />
  4153. </productMenu>
  4154. <productMenu id="phone"
  4155. type="1" >
  4156. </productMenu>
  4157. <productMenu id="music"
  4158. type="1" >
  4159. </productMenu>
  4160. <productMenu id="musicSharing"
  4161. type="0" >
  4162. </productMenu>
  4163. <productMenu id="deviceSetting"
  4164. type="1"
  4165. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  4166. <productMenuURL version="2.4.9"
  4167. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  4168. />
  4169. <productMenuURL version="2.2.2"
  4170. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  4171. />
  4172. <productMenuURL version="2.1.1"
  4173. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  4174. />
  4175. </productMenu>
  4176. <productMenu id="quickGuide"
  4177. type="0"
  4178. url=""
  4179. size="1.12MB" >
  4180. </productMenu>
  4181. <productMenu id="userGuide"
  4182. type="1"
  4183. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  4184. size="2.0MB" >
  4185. </productMenu>
  4186. <productMenu id="videoGuide"
  4187. type="1"
  4188. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  4189. size="3.41MB" >
  4190. </productMenu>
  4191. <productMenu id="connectGuide"
  4192. type="1"
  4193. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  4194. size="1.12MB" >
  4195. </productMenu>
  4196. <productMenu id="volume"
  4197. type="12" >
  4198. </productMenu>
  4199. <productMenu id="battery"
  4200. type="1" >
  4201. </productMenu>
  4202. <productID id="6800"
  4203. />
  4204. <productGroupable type="0"
  4205. />
  4206. </product>
  4207. <product id="SPIDER_ST1"
  4208. name="SPIDER ST1"
  4209. series="SPIDER"
  4210. latestVersion="1.2.2"
  4211. show = "-1" >
  4212. <productMenu id="protocol"
  4213. type="2" >
  4214. </productMenu>
  4215. <productMenu id="alexa"
  4216. type="0" >
  4217. </productMenu>
  4218. <productMenu id="ota"
  4219. type="0" >
  4220. </productMenu>
  4221. <productMenu id="wa"
  4222. type="0" >
  4223. </productMenu>
  4224. <productMenu id="meshIntercom"
  4225. type="20" >
  4226. </productMenu>
  4227. <productMenu id="phone"
  4228. type="1" >
  4229. </productMenu>
  4230. <productMenu id="music"
  4231. type="1" >
  4232. </productMenu>
  4233. <productMenu id="deviceSetting"
  4234. type="1"
  4235. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  4236. </productMenu>
  4237. <productMenu id="quickGuide"
  4238. type="0"
  4239. url=""
  4240. size="1.12MB" >
  4241. </productMenu>
  4242. <productMenu id="userGuide"
  4243. type="1"
  4244. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  4245. size="2.0MB" >
  4246. </productMenu>
  4247. <productMenu id="videoGuide"
  4248. type="1"
  4249. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  4250. size="3.41MB" >
  4251. </productMenu>
  4252. <productMenu id="volume"
  4253. type="13" >
  4254. <productMenuType version="1.1.6"
  4255. type="14"/>
  4256. </productMenu>
  4257. <productMenu id="battery"
  4258. type="1" >
  4259. </productMenu>
  4260. <productID id="6510"
  4261. />
  4262. <productGroupable type="0"
  4263. />
  4264. </product>
  4265. <product id="SPIDER_RT1"
  4266. name="SPIDER RT1"
  4267. series="SPIDER"
  4268. latestVersion="2.5"
  4269. latestVersionVoicePrompt="1.1"
  4270. show = "1" >
  4271. <productMenu id="protocol"
  4272. type="2" >
  4273. </productMenu>
  4274. <productMenu id="alexa"
  4275. type="0" >
  4276. </productMenu>
  4277. <productMenu id="ota"
  4278. type="2" >
  4279. <productMenuType version="2.1.9"
  4280. type="0"
  4281. />
  4282. <otaPackages>
  4283. <package
  4284. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5-build1.img"
  4285. size="2945812"
  4286. />
  4287. </otaPackages>
  4288. </productMenu>
  4289. <productMenu id="wa"
  4290. type="0" >
  4291. </productMenu>
  4292. <productMenu id="meshIntercom"
  4293. type="30" >
  4294. <productMenuType version="2.1.1"
  4295. type="20"
  4296. />
  4297. </productMenu>
  4298. <productMenu id="meshIntercom+"
  4299. type="3"
  4300. url="2" >
  4301. <productMenuType version="2.2.9"
  4302. type="2"
  4303. />
  4304. <productMenuURL version="2.1.1"
  4305. url="0"
  4306. />
  4307. </productMenu>
  4308. <productMenu id="waveIntercom"
  4309. type="1" >
  4310. <productMenuType version="2.3.9"
  4311. type="0"
  4312. />
  4313. </productMenu>
  4314. <productMenu id="phone"
  4315. type="1" >
  4316. </productMenu>
  4317. <productMenu id="music"
  4318. type="1" >
  4319. </productMenu>
  4320. <productMenu id="musicSharing"
  4321. type="0" >
  4322. </productMenu>
  4323. <productMenu id="deviceSetting"
  4324. type="1"
  4325. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  4326. <productMenuURL version="2.4.9"
  4327. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  4328. />
  4329. <productMenuURL version="2.2.2"
  4330. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  4331. />
  4332. <productMenuURL version="2.1.1"
  4333. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  4334. />
  4335. </productMenu>
  4336. <productMenu id="quickGuide"
  4337. type="0"
  4338. url=""
  4339. size="1.12MB" >
  4340. </productMenu>
  4341. <productMenu id="userGuide"
  4342. type="1"
  4343. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  4344. size="2.0MB" >
  4345. </productMenu>
  4346. <productMenu id="videoGuide"
  4347. type="1"
  4348. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  4349. size="3.41MB" >
  4350. </productMenu>
  4351. <productMenu id="connectGuide"
  4352. type="1"
  4353. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  4354. size="1.12MB" >
  4355. </productMenu>
  4356. <productMenu id="volume"
  4357. type="12" >
  4358. </productMenu>
  4359. <productMenu id="battery"
  4360. type="1" >
  4361. </productMenu>
  4362. <productID id="6810"
  4363. />
  4364. <productGroupable type="0"
  4365. />
  4366. </product>
  4367. <product id="SPIDER_RT1"
  4368. name="SPIDER RT1"
  4369. series="SPIDER"
  4370. latestVersion="1.2.2"
  4371. show = "-1" >
  4372. <productMenu id="protocol"
  4373. type="2" >
  4374. </productMenu>
  4375. <productMenu id="alexa"
  4376. type="0" >
  4377. </productMenu>
  4378. <productMenu id="ota"
  4379. type="0" >
  4380. </productMenu>
  4381. <productMenu id="wa"
  4382. type="0" >
  4383. </productMenu>
  4384. <productMenu id="meshIntercom"
  4385. type="20" >
  4386. </productMenu>
  4387. <productMenu id="phone"
  4388. type="1" >
  4389. </productMenu>
  4390. <productMenu id="music"
  4391. type="1" >
  4392. </productMenu>
  4393. <productMenu id="deviceSetting"
  4394. type="1"
  4395. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  4396. </productMenu>
  4397. <productMenu id="quickGuide"
  4398. type="0"
  4399. url=""
  4400. size="1.32MB" >
  4401. </productMenu>
  4402. <productMenu id="userGuide"
  4403. type="1"
  4404. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  4405. size="1.79MB" >
  4406. </productMenu>
  4407. <productMenu id="videoGuide"
  4408. type="1"
  4409. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  4410. size="3.41MB" >
  4411. </productMenu>
  4412. <productMenu id="volume"
  4413. type="13" >
  4414. <productMenuType version="1.1.6"
  4415. type="14"/>
  4416. </productMenu>
  4417. <productMenu id="battery"
  4418. type="1" >
  4419. </productMenu>
  4420. <productID id="6500"
  4421. />
  4422. <productGroupable type="0"
  4423. />
  4424. </product>
  4425. <product id="30K"
  4426. name="30K"
  4427. series="30"
  4428. latestVersion="4.5"
  4429. show = "1" >
  4430. <productMenu id="protocol"
  4431. type="2" >
  4432. </productMenu>
  4433. <productMenu id="alexa"
  4434. type="0" >
  4435. </productMenu>
  4436. <productMenu id="wa"
  4437. type="1" >
  4438. </productMenu>
  4439. <productMenu id="sip"
  4440. type="1" >
  4441. </productMenu>
  4442. <productMenu id="meshIntercom"
  4443. type="30" >
  4444. <productMenuType version="4.0.4"
  4445. type="20"
  4446. />
  4447. </productMenu>
  4448. <productMenu id="meshIntercom+"
  4449. type="3"
  4450. url="2" >
  4451. <productMenuType version="4.3.9"
  4452. type="2"
  4453. />
  4454. <productMenuURL version="4.0.4"
  4455. url="0"
  4456. />
  4457. </productMenu>
  4458. <productMenu id="waveIntercom"
  4459. type="1" >
  4460. <productMenuType version="4.4.9"
  4461. type="0"
  4462. />
  4463. </productMenu>
  4464. <productMenu id="bluetoothIntercom"
  4465. type="1" >
  4466. </productMenu>
  4467. <productMenu id="phone"
  4468. type="1" >
  4469. </productMenu>
  4470. <productMenu id="music"
  4471. type="1" >
  4472. </productMenu>
  4473. <productMenu id="fmradio"
  4474. type="1" >
  4475. </productMenu>
  4476. <productMenu id="deviceSetting"
  4477. type="1"
  4478. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  4479. <productMenuURL version="4.3"
  4480. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  4481. />
  4482. <productMenuURL version="4.2"
  4483. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  4484. />
  4485. <productMenuURL version="4.0.4"
  4486. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  4487. />
  4488. </productMenu>
  4489. <productMenu id="quickGuide"
  4490. type="0"
  4491. url=""
  4492. size="934KB" >
  4493. </productMenu>
  4494. <productMenu id="userGuide"
  4495. type="1"
  4496. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  4497. size="1.14MB" >
  4498. </productMenu>
  4499. <productMenu id="connectGuide"
  4500. type="1"
  4501. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  4502. size="1.12MB" >
  4503. </productMenu>
  4504. <productMenu id="volume"
  4505. type="11" >
  4506. </productMenu>
  4507. <productMenu id="battery"
  4508. type="1" >
  4509. </productMenu>
  4510. <productID id="3211"
  4511. />
  4512. <productGroupable type="0"
  4513. />
  4514. </product>
  4515. <product id="30K"
  4516. name="30K"
  4517. series="30"
  4518. latestVersion="3.5"
  4519. show = "-1" >
  4520. <productMenu id="protocol"
  4521. type="1"
  4522. url="0">
  4523. </productMenu>
  4524. <productMenu id="wa"
  4525. type="7" >
  4526. </productMenu>
  4527. <productMenu id="sip"
  4528. type="1" >
  4529. </productMenu>
  4530. <productMenu id="meshIntercom"
  4531. type="20" >
  4532. <productMenuType version="2.9.9"
  4533. type="10"
  4534. />
  4535. </productMenu>
  4536. <productMenu id="meshIntercom+"
  4537. type="3"
  4538. url="2" >
  4539. <productMenuType version="3.4.9"
  4540. type="2"
  4541. />
  4542. <productMenuType version="2.9.9"
  4543. type="1"
  4544. />
  4545. <productMenuURL version="3.3.1"
  4546. url="0"
  4547. />
  4548. </productMenu>
  4549. <productMenu id="bluetoothIntercom"
  4550. type="1" >
  4551. </productMenu>
  4552. <productMenu id="phone"
  4553. type="1" >
  4554. </productMenu>
  4555. <productMenu id="music"
  4556. type="1" >
  4557. </productMenu>
  4558. <productMenu id="fmradio"
  4559. type="1" >
  4560. </productMenu>
  4561. <productMenu id="deviceSetting"
  4562. type="1"
  4563. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  4564. <productMenuURL version="3.4.9"
  4565. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  4566. />
  4567. <productMenuURL version="3.3.1"
  4568. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  4569. />
  4570. <productMenuURL version="3.0.1"
  4571. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  4572. />
  4573. <productMenuURL version="2.3.1"
  4574. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  4575. />
  4576. <productMenuURL version="2.0"
  4577. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  4578. />
  4579. <productMenuURL version="1.0.3"
  4580. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  4581. />
  4582. </productMenu>
  4583. <productMenu id="quickGuide"
  4584. type="0"
  4585. url=""
  4586. size="1.06MB" >
  4587. </productMenu>
  4588. <productMenu id="userGuide"
  4589. type="1"
  4590. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  4591. size="3.15MB" >
  4592. </productMenu>
  4593. <productMenu id="volume"
  4594. type="1" >
  4595. </productMenu>
  4596. <productID id="3110"
  4597. />
  4598. <productGroupable type="0"
  4599. />
  4600. </product>
  4601. <product id="FURY"
  4602. name="FURY"
  4603. series="Helmet"
  4604. latestVersion="1.0"
  4605. show = "-1" >
  4606. <productMenu id="protocol"
  4607. type="2" >
  4608. </productMenu>
  4609. <productMenu id="alexa"
  4610. type="0" >
  4611. </productMenu>
  4612. <productMenu id="ota"
  4613. type="0" >
  4614. </productMenu>
  4615. <productMenu id="wa"
  4616. type="0" >
  4617. </productMenu>
  4618. <productMenu id="meshIntercom"
  4619. type="20" >
  4620. </productMenu>
  4621. <productMenu id="phone"
  4622. type="1" >
  4623. </productMenu>
  4624. <productMenu id="music"
  4625. type="1" >
  4626. </productMenu>
  4627. <productMenu id="fmradio"
  4628. type="1" >
  4629. </productMenu>
  4630. <productMenu id="deviceSetting"
  4631. type="1"
  4632. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  4633. </productMenu>
  4634. <productMenu id="quickGuide"
  4635. type="1"
  4636. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  4637. size="1.12MB" >
  4638. </productMenu>
  4639. <productMenu id="userGuide"
  4640. type="1"
  4641. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  4642. size="2.0MB" >
  4643. </productMenu>
  4644. <productMenu id="volume"
  4645. type="13" >
  4646. </productMenu>
  4647. <productMenu id="battery"
  4648. type="1" >
  4649. </productMenu>
  4650. <productID id="5552"
  4651. />
  4652. <productGroupable type="0"
  4653. />
  4654. </product>
  4655. <product id="MomentumM"
  4656. name="Momentum EVO"
  4657. series="Helmet"
  4658. latestVersion="2.1.2"
  4659. show = "1" >
  4660. <productMenu id="protocol"
  4661. type="1"
  4662. url="0">
  4663. </productMenu>
  4664. <productMenu id="wa"
  4665. type="3" >
  4666. </productMenu>
  4667. <productMenu id="sip"
  4668. type="1" >
  4669. </productMenu>
  4670. <productMenu id="meshIntercom"
  4671. type="20" >
  4672. <productMenuType version="1.9.9"
  4673. type="10"
  4674. />
  4675. </productMenu>
  4676. <productMenu id="bluetoothIntercom"
  4677. type="1" >
  4678. </productMenu>
  4679. <productMenu id="phone"
  4680. type="1" >
  4681. </productMenu>
  4682. <productMenu id="music"
  4683. type="1" >
  4684. </productMenu>
  4685. <productMenu id="fmradio"
  4686. type="1" >
  4687. </productMenu>
  4688. <productMenu id="deviceSetting"
  4689. type="1"
  4690. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  4691. <productMenuURL version="1.0.1"
  4692. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  4693. />
  4694. </productMenu>
  4695. <productMenu id="quickGuide"
  4696. type="1"
  4697. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  4698. size="1.06MB" >
  4699. </productMenu>
  4700. <productMenu id="userGuide"
  4701. type="1"
  4702. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  4703. size="3.15MB" >
  4704. </productMenu>
  4705. <productMenu id="connectGuide"
  4706. type="1"
  4707. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  4708. size="1.12MB" >
  4709. </productMenu>
  4710. <productMenu id="volume"
  4711. type="2" >
  4712. </productMenu>
  4713. <productID id="3116"
  4714. />
  4715. <productGroupable type="0"
  4716. />
  4717. </product>
  4718. <product id="Momentum"
  4719. name="Momentum"
  4720. series="Helmet"
  4721. latestVersion="1.0.9"
  4722. show = "1" >
  4723. <productMenu id="protocol"
  4724. type="0">
  4725. </productMenu>
  4726. <productMenu id="sip"
  4727. type="1" >
  4728. </productMenu>
  4729. <productMenu id="bluetoothIntercom"
  4730. type="1" >
  4731. </productMenu>
  4732. <productMenu id="intercomSetting"
  4733. type="1" >
  4734. </productMenu>
  4735. <productMenu id="phone"
  4736. type="2" >
  4737. </productMenu>
  4738. <productMenu id="fmradio"
  4739. type="3" >
  4740. </productMenu>
  4741. <productMenu id="deviceSetting"
  4742. type="1"
  4743. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4744. </productMenu>
  4745. <productMenu id="quickGuide"
  4746. type="1"
  4747. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  4748. size="796KB" >
  4749. </productMenu>
  4750. <productMenu id="userGuide"
  4751. type="1"
  4752. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  4753. size="1.90MB" >
  4754. </productMenu>
  4755. <productMenu id="connectGuide"
  4756. type="1"
  4757. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  4758. size="1.12MB" >
  4759. </productMenu>
  4760. <productID id="4310"
  4761. />
  4762. <productGroupable type="1"
  4763. />
  4764. </product>
  4765. <product id="Momentum_Pro"
  4766. name="Momentum Pro"
  4767. series="Helmet"
  4768. latestVersion="1.0.6"
  4769. show = "1" >
  4770. <productMenu id="protocol"
  4771. type="0">
  4772. </productMenu>
  4773. <productMenu id="sip"
  4774. type="1" >
  4775. </productMenu>
  4776. <productMenu id="bluetoothIntercom"
  4777. type="1" >
  4778. </productMenu>
  4779. <productMenu id="intercomSetting"
  4780. type="1" >
  4781. </productMenu>
  4782. <productMenu id="phone"
  4783. type="2" >
  4784. </productMenu>
  4785. <productMenu id="fmradio"
  4786. type="3" >
  4787. </productMenu>
  4788. <productMenu id="deviceSetting"
  4789. type="1"
  4790. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4791. </productMenu>
  4792. <productMenu id="quickGuide"
  4793. type="1"
  4794. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  4795. size="796KB" >
  4796. </productMenu>
  4797. <productMenu id="userGuide"
  4798. type="1"
  4799. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  4800. size="1.90MB" >
  4801. </productMenu>
  4802. <productMenu id="connectGuide"
  4803. type="1"
  4804. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  4805. size="1.12MB" >
  4806. </productMenu>
  4807. <productID id="4330"
  4808. />
  4809. <productGroupable type="1"
  4810. />
  4811. </product>
  4812. <product id="Momentum_INC"
  4813. name="Momentum INC"
  4814. series="Helmet"
  4815. latestVersion="1.0.7"
  4816. show = "1" >
  4817. <productMenu id="protocol"
  4818. type="0">
  4819. </productMenu>
  4820. <productMenu id="sip"
  4821. type="1" >
  4822. </productMenu>
  4823. <productMenu id="bluetoothIntercom"
  4824. type="1" >
  4825. </productMenu>
  4826. <productMenu id="intercomSetting"
  4827. type="1" >
  4828. </productMenu>
  4829. <productMenu id="phone"
  4830. type="2" >
  4831. </productMenu>
  4832. <productMenu id="fmradio"
  4833. type="3" >
  4834. </productMenu>
  4835. <productMenu id="deviceSetting"
  4836. type="1"
  4837. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  4838. </productMenu>
  4839. <productMenu id="quickGuide"
  4840. type="1"
  4841. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  4842. size="794KB" >
  4843. </productMenu>
  4844. <productMenu id="userGuide"
  4845. type="1"
  4846. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  4847. size="1.53MB" >
  4848. </productMenu>
  4849. <productMenu id="connectGuide"
  4850. type="1"
  4851. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  4852. size="1.12MB" >
  4853. </productMenu>
  4854. <productID id="4410"
  4855. />
  4856. <productGroupable type="1"
  4857. />
  4858. </product>
  4859. <product id="Momentum_INCP"
  4860. name="Momentum INC Pro"
  4861. series="Helmet"
  4862. latestVersion="1.0.4"
  4863. show = "1" >
  4864. <productMenu id="protocol"
  4865. type="0">
  4866. </productMenu>
  4867. <productMenu id="sip"
  4868. type="1" >
  4869. </productMenu>
  4870. <productMenu id="bluetoothIntercom"
  4871. type="1" >
  4872. </productMenu>
  4873. <productMenu id="intercomSetting"
  4874. type="1" >
  4875. </productMenu>
  4876. <productMenu id="phone"
  4877. type="2" >
  4878. </productMenu>
  4879. <productMenu id="fmradio"
  4880. type="3" >
  4881. </productMenu>
  4882. <productMenu id="deviceSetting"
  4883. type="1"
  4884. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  4885. </productMenu>
  4886. <productMenu id="quickGuide"
  4887. type="1"
  4888. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  4889. size="794KB" >
  4890. </productMenu>
  4891. <productMenu id="userGuide"
  4892. type="1"
  4893. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  4894. size="1.53MB" >
  4895. </productMenu>
  4896. <productMenu id="connectGuide"
  4897. type="1"
  4898. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  4899. size="1.12MB" >
  4900. </productMenu>
  4901. <productID id="4430"
  4902. />
  4903. <productGroupable type="1"
  4904. />
  4905. </product>
  4906. <product id="Momentum_Lite"
  4907. name="Momentum Lite"
  4908. series="Helmet"
  4909. latestVersion="2.0.3"
  4910. show = "1" >
  4911. <productMenu id="protocol"
  4912. type="0">
  4913. </productMenu>
  4914. <productMenu id="sip"
  4915. type="1" >
  4916. </productMenu>
  4917. <productMenu id="bluetoothIntercom"
  4918. type="1" >
  4919. </productMenu>
  4920. <productMenu id="phone"
  4921. type="2" >
  4922. </productMenu>
  4923. <productMenu id="fmradio"
  4924. type="3" >
  4925. </productMenu>
  4926. <productMenu id="deviceSetting"
  4927. type="1"
  4928. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  4929. <productMenuURL version="1.1"
  4930. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  4931. />
  4932. </productMenu>
  4933. <productMenu id="quickGuide"
  4934. type="1"
  4935. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  4936. size="790KB" >
  4937. </productMenu>
  4938. <productMenu id="userGuide"
  4939. type="1"
  4940. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  4941. size="1.42MB" >
  4942. </productMenu>
  4943. <productMenu id="connectGuide"
  4944. type="1"
  4945. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  4946. size="1.12MB" >
  4947. </productMenu>
  4948. <productID id="5526"
  4949. />
  4950. <productGroupable type="0"
  4951. />
  4952. </product>
  4953. <product id="OUTRUSHM"
  4954. name="OUTRUSH M"
  4955. series="Helmet"
  4956. latestVersion="1.0"
  4957. show = "-1" >
  4958. <productMenu id="protocol"
  4959. type="2" >
  4960. </productMenu>
  4961. <productMenu id="alexa"
  4962. type="0" >
  4963. </productMenu>
  4964. <productMenu id="ota"
  4965. type="0" >
  4966. </productMenu>
  4967. <productMenu id="wa"
  4968. type="0" >
  4969. </productMenu>
  4970. <productMenu id="meshIntercom"
  4971. type="30" >
  4972. </productMenu>
  4973. <productMenu id="phone"
  4974. type="1" >
  4975. </productMenu>
  4976. <productMenu id="music"
  4977. type="1" >
  4978. </productMenu>
  4979. <productMenu id="fmradio"
  4980. type="1" >
  4981. </productMenu>
  4982. <productMenu id="deviceSetting"
  4983. type="1"
  4984. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  4985. </productMenu>
  4986. <productMenu id="quickGuide"
  4987. type="1"
  4988. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  4989. size="1.12MB" >
  4990. </productMenu>
  4991. <productMenu id="userGuide"
  4992. type="1"
  4993. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  4994. size="2.0MB" >
  4995. </productMenu>
  4996. <productMenu id="volume"
  4997. type="13" >
  4998. </productMenu>
  4999. <productMenu id="battery"
  5000. type="1" >
  5001. </productMenu>
  5002. <productID id="5600"
  5003. />
  5004. <productGroupable type="0"
  5005. />
  5006. </product>
  5007. <product id="ProRideEVO"
  5008. name="ProRide EVO"
  5009. series="Helmet"
  5010. latestVersion="1.1.2"
  5011. show = "1" >
  5012. <productMenu id="protocol"
  5013. type="0">
  5014. </productMenu>
  5015. <productMenu id="sip"
  5016. type="1" >
  5017. </productMenu>
  5018. <productMenu id="bluetoothIntercom"
  5019. type="1" >
  5020. </productMenu>
  5021. <productMenu id="phone"
  5022. type="2" >
  5023. </productMenu>
  5024. <productMenu id="fmradio"
  5025. type="3" >
  5026. </productMenu>
  5027. <productMenu id="deviceSetting"
  5028. type="1"
  5029. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  5030. </productMenu>
  5031. <productMenu id="userGuide"
  5032. type="1"
  5033. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  5034. size="778KB" >
  5035. </productMenu>
  5036. <productMenu id="connectGuide"
  5037. type="1"
  5038. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5039. size="1.12MB" >
  5040. </productMenu>
  5041. <productID id="5426"
  5042. />
  5043. <productGroupable type="0"
  5044. />
  5045. </product>
  5046. <product id="OUTRUSHR"
  5047. name="OUTRUSH R"
  5048. series="Helmet"
  5049. latestVersion="2.1"
  5050. show = "1" >
  5051. <productMenu id="protocol"
  5052. type="3" >
  5053. </productMenu>
  5054. <productMenu id="sip"
  5055. type="1" >
  5056. </productMenu>
  5057. <productMenu id="bluetoothIntercom"
  5058. type="1" >
  5059. </productMenu>
  5060. <productMenu id="phone"
  5061. type="1" >
  5062. </productMenu>
  5063. <productMenu id="fmradio"
  5064. type="0" >
  5065. </productMenu>
  5066. <productMenu id="deviceSetting"
  5067. type="1"
  5068. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  5069. </productMenu>
  5070. <productMenu id="userGuide"
  5071. type="1"
  5072. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  5073. size="1.14MB" >
  5074. </productMenu>
  5075. <productMenu id="connectGuide"
  5076. type="1"
  5077. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5078. size="1.12MB" >
  5079. </productMenu>
  5080. <productID id="5440"
  5081. />
  5082. <productGroupable type="0"
  5083. />
  5084. </product>
  5085. <product id="OUTRUSHR"
  5086. name="OUTRUSH R"
  5087. series="Helmet"
  5088. latestVersion="1.1.3"
  5089. show = "-1" >
  5090. <productMenu id="protocol"
  5091. type="0">
  5092. </productMenu>
  5093. <productMenu id="sip"
  5094. type="1" >
  5095. </productMenu>
  5096. <productMenu id="bluetoothIntercom"
  5097. type="1" >
  5098. </productMenu>
  5099. <productMenu id="phone"
  5100. type="2" >
  5101. </productMenu>
  5102. <productMenu id="fmradio"
  5103. type="3" >
  5104. </productMenu>
  5105. <productMenu id="deviceSetting"
  5106. type="1"
  5107. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  5108. </productMenu>
  5109. <productMenu id="userGuide"
  5110. type="1"
  5111. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  5112. size="660KB" >
  5113. </productMenu>
  5114. <productMenu id="connectGuide"
  5115. type="1"
  5116. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5117. size="1.12MB" >
  5118. </productMenu>
  5119. <productID id="5424"
  5120. />
  5121. <productGroupable type="0"
  5122. />
  5123. </product>
  5124. <product id="OUTSTARS"
  5125. name="OUTSTAR S"
  5126. series="Helmet"
  5127. latestVersion="2.0.1"
  5128. show = "-1" >
  5129. <productMenu id="protocol"
  5130. type="3" >
  5131. </productMenu>
  5132. <productMenu id="sip"
  5133. type="1" >
  5134. </productMenu>
  5135. <productMenu id="bluetoothIntercom"
  5136. type="1" >
  5137. </productMenu>
  5138. <productMenu id="phone"
  5139. type="1" >
  5140. </productMenu>
  5141. <productMenu id="fmradio"
  5142. type="0" >
  5143. </productMenu>
  5144. <productMenu id="deviceSetting"
  5145. type="1"
  5146. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  5147. </productMenu>
  5148. <productMenu id="userGuide"
  5149. type="0"
  5150. url=""
  5151. size="1.14MB" >
  5152. </productMenu>
  5153. <productID id="5443"
  5154. />
  5155. <productGroupable type="0"
  5156. />
  5157. </product>
  5158. <product id="OUTSTARS"
  5159. name="OUTSTAR S"
  5160. series="Helmet"
  5161. latestVersion="1.1.3"
  5162. show = "1" >
  5163. <productMenu id="protocol"
  5164. type="0">
  5165. </productMenu>
  5166. <productMenu id="sip"
  5167. type="1" >
  5168. </productMenu>
  5169. <productMenu id="bluetoothIntercom"
  5170. type="1" >
  5171. </productMenu>
  5172. <productMenu id="phone"
  5173. type="2" >
  5174. </productMenu>
  5175. <productMenu id="fmradio"
  5176. type="3" >
  5177. </productMenu>
  5178. <productMenu id="deviceSetting"
  5179. type="1"
  5180. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  5181. </productMenu>
  5182. <productMenu id="quickGuide"
  5183. type="1"
  5184. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  5185. size="643KB" >
  5186. </productMenu>
  5187. <productMenu id="userGuide"
  5188. type="1"
  5189. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  5190. size="1.15MB" >
  5191. </productMenu>
  5192. <productMenu id="connectGuide"
  5193. type="1"
  5194. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5195. size="1.12MB" >
  5196. </productMenu>
  5197. <productID id="5428"
  5198. />
  5199. <productGroupable type="0"
  5200. />
  5201. </product>
  5202. <product id="OUTRIDE"
  5203. name="OUTRIDE"
  5204. series="Helmet"
  5205. latestVersion="1.0.1"
  5206. show = "1" >
  5207. <productMenu id="protocol"
  5208. type="0">
  5209. </productMenu>
  5210. <productMenu id="sip"
  5211. type="1" >
  5212. </productMenu>
  5213. <productMenu id="bluetoothIntercom"
  5214. type="1" >
  5215. </productMenu>
  5216. <productMenu id="phone"
  5217. type="2" >
  5218. </productMenu>
  5219. <productMenu id="fmradio"
  5220. type="3" >
  5221. </productMenu>
  5222. <productMenu id="deviceSetting"
  5223. type="1"
  5224. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  5225. </productMenu>
  5226. <productMenu id="quickGuide"
  5227. type="1"
  5228. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  5229. size="643KB" >
  5230. </productMenu>
  5231. <productMenu id="userGuide"
  5232. type="1"
  5233. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  5234. size="660KB" >
  5235. </productMenu>
  5236. <productMenu id="connectGuide"
  5237. type="1"
  5238. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5239. size="1.12MB" >
  5240. </productMenu>
  5241. <productID id="5432"
  5242. />
  5243. <productGroupable type="0"
  5244. />
  5245. </product>
  5246. <product id="OUTFORCE"
  5247. name="OUTFORCE"
  5248. series="Helmet"
  5249. latestVersion="1.0.1"
  5250. show = "1" >
  5251. <productMenu id="protocol"
  5252. type="0">
  5253. </productMenu>
  5254. <productMenu id="sip"
  5255. type="1" >
  5256. </productMenu>
  5257. <productMenu id="bluetoothIntercom"
  5258. type="1" >
  5259. </productMenu>
  5260. <productMenu id="phone"
  5261. type="2" >
  5262. </productMenu>
  5263. <productMenu id="fmradio"
  5264. type="3" >
  5265. </productMenu>
  5266. <productMenu id="deviceSetting"
  5267. type="1"
  5268. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  5269. </productMenu>
  5270. <productMenu id="quickGuide"
  5271. type="1"
  5272. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  5273. size="643KB" >
  5274. </productMenu>
  5275. <productMenu id="userGuide"
  5276. type="1"
  5277. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  5278. size="660KB" >
  5279. </productMenu>
  5280. <productMenu id="connectGuide"
  5281. type="1"
  5282. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5283. size="1.12MB" >
  5284. </productMenu>
  5285. <productID id="5430"
  5286. />
  5287. <productGroupable type="0"
  5288. />
  5289. </product>
  5290. <product id="Rumba"
  5291. name="Rumba"
  5292. series="30"
  5293. latestVersion="2.0"
  5294. show = "-1" >
  5295. <productMenu id="protocol"
  5296. type="3" >
  5297. </productMenu>
  5298. <productMenu id="sip"
  5299. type="1" >
  5300. </productMenu>
  5301. <productMenu id="bluetoothIntercom"
  5302. type="1" >
  5303. </productMenu>
  5304. <productMenu id="deviceSetting"
  5305. type="1"
  5306. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  5307. </productMenu>
  5308. <productMenu id="quickGuide"
  5309. type="1"
  5310. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  5311. size="344KB" >
  5312. </productMenu>
  5313. <productMenu id="userGuide"
  5314. type="1"
  5315. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  5316. size="1.14MB" >
  5317. </productMenu>
  5318. <productID id="6322"
  5319. />
  5320. <productGroupable type="0"
  5321. />
  5322. </product>
  5323. <product id="Savage"
  5324. name="Savage"
  5325. series="Helmet"
  5326. latestVersion="1.2.2"
  5327. show = "1" >
  5328. <productMenu id="protocol"
  5329. type="0">
  5330. </productMenu>
  5331. <productMenu id="sip"
  5332. type="1" >
  5333. </productMenu>
  5334. <productMenu id="bluetoothIntercom"
  5335. type="1" >
  5336. </productMenu>
  5337. <productMenu id="phone"
  5338. type="2" >
  5339. </productMenu>
  5340. <productMenu id="fmradio"
  5341. type="3" >
  5342. </productMenu>
  5343. <productMenu id="deviceSetting"
  5344. type="1"
  5345. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  5346. <productMenuURL version="1.9"
  5347. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  5348. />
  5349. <productMenuURL version="1.1"
  5350. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  5351. />
  5352. </productMenu>
  5353. <productMenu id="quickGuide"
  5354. type="1"
  5355. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  5356. size="796KB" >
  5357. </productMenu>
  5358. <productMenu id="userGuide"
  5359. type="1"
  5360. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  5361. size="910KB" >
  5362. </productMenu>
  5363. <productMenu id="connectGuide"
  5364. type="1"
  5365. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  5366. size="1.12MB" >
  5367. </productMenu>
  5368. <productID id="5550"
  5369. />
  5370. <productGroupable type="0"
  5371. />
  5372. </product>
  5373. <product id="SPECTOR"
  5374. name="SPECTOR"
  5375. series="Helmet"
  5376. latestVersion="1.0.1"
  5377. latestVersionVoicePrompt="1.1"
  5378. show = "-1" >
  5379. <productMenu id="protocol"
  5380. type="2" >
  5381. </productMenu>
  5382. <productMenu id="ota"
  5383. type="0" >
  5384. <otaLanguages>
  5385. <otaLanguage
  5386. id="0"
  5387. name="English"
  5388. package="0"
  5389. />
  5390. <otaLanguage
  5391. id="0"
  5392. name="French"
  5393. package="1"
  5394. />
  5395. <otaLanguage
  5396. id="0"
  5397. name="Spanish"
  5398. package="2"
  5399. />
  5400. <otaLanguage
  5401. id="0"
  5402. name="Italian"
  5403. package="3"
  5404. />
  5405. <otaLanguage
  5406. id="0"
  5407. name="German"
  5408. package="4"
  5409. />
  5410. <otaLanguage
  5411. id="0"
  5412. name="Dutch"
  5413. package="5"
  5414. />
  5415. <otaLanguage
  5416. id="0"
  5417. name="Russian"
  5418. package="6"
  5419. />
  5420. <otaLanguage
  5421. id="0"
  5422. name="Chinese"
  5423. package="7"
  5424. />
  5425. <otaLanguage
  5426. id="0"
  5427. name="Korean"
  5428. package="8"
  5429. />
  5430. <otaLanguage
  5431. id="0"
  5432. name="Japanese"
  5433. package="9"
  5434. />
  5435. <otaLanguage
  5436. id="0"
  5437. name="Finnish"
  5438. package="10"
  5439. />
  5440. <otaLanguage
  5441. id="0"
  5442. name="Polish"
  5443. package="11"
  5444. />
  5445. </otaLanguages>
  5446. <otaPackages>
  5447. <package
  5448. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTERREV-v1.0-build2.img"
  5449. size="5183988"
  5450. />
  5451. <package
  5452. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTERREV-v1.0-build2-fr-FR.img"
  5453. size="5183988"
  5454. />
  5455. <package
  5456. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTERREV-v1.0-build2-es-ES.img"
  5457. size="5183988"
  5458. />
  5459. <package
  5460. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTERREV-v1.0-build2-it-IT.img"
  5461. size="5183988"
  5462. />
  5463. <package
  5464. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTERREV-v1.0-build2-de-DE.img"
  5465. size="5183988"
  5466. />
  5467. <package
  5468. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTERREV-v1.0-build2-nl-NL.img"
  5469. size="5183988"
  5470. />
  5471. <package
  5472. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTERREV-v1.0-build2-ru-RU.img"
  5473. size="5183988"
  5474. />
  5475. <package
  5476. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTERREV-v1.0-build2-cmn-CN.img"
  5477. size="5183988"
  5478. />
  5479. <package
  5480. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTERREV-v1.0-build2-ko-KR.img"
  5481. size="5183988"
  5482. />
  5483. <package
  5484. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTERREV-v1.0-build2-ja-JP.img"
  5485. size="5183988"
  5486. />
  5487. <package
  5488. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTERREV-v1.0-build2-fi-FI.img"
  5489. size="5183988"
  5490. />
  5491. <package
  5492. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTERREV-v1.0-build2-pl-PL.img"
  5493. size="5183988"
  5494. />
  5495. </otaPackages>
  5496. </productMenu>
  5497. <productMenu id="wa"
  5498. type="0" >
  5499. </productMenu>
  5500. <productMenu id="led"
  5501. type="5" >
  5502. </productMenu>
  5503. <productMenu id="led+"
  5504. type="2"
  5505. url="1" >
  5506. </productMenu>
  5507. <productMenu id="meshIntercom+"
  5508. type="3"
  5509. url="2" >
  5510. </productMenu>
  5511. <productMenu id="waveIntercom"
  5512. type="1" >
  5513. </productMenu>
  5514. <productMenu id="fmradio"
  5515. type="0" >
  5516. </productMenu>
  5517. <productMenu id="phone"
  5518. type="1" >
  5519. </productMenu>
  5520. <productMenu id="music"
  5521. type="1" >
  5522. </productMenu>
  5523. <productMenu id="musicSharing"
  5524. type="0" >
  5525. </productMenu>
  5526. <productMenu id="deviceSetting"
  5527. type="1"
  5528. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  5529. </productMenu>
  5530. <productMenu id="quickGuide"
  5531. type="0"
  5532. url=""
  5533. size="1.12MB" >
  5534. </productMenu>
  5535. <productMenu id="userGuide"
  5536. type="0"
  5537. url=""
  5538. size="2.0MB" >
  5539. </productMenu>
  5540. <productMenu id="videoGuide"
  5541. type="0"
  5542. url=""
  5543. size="3.41MB" >
  5544. </productMenu>
  5545. <productMenu id="volume"
  5546. type="16" >
  5547. </productMenu>
  5548. <productMenu id="battery"
  5549. type="1" >
  5550. </productMenu>
  5551. <productID id="6A11"
  5552. />
  5553. <productGroupable type="0"
  5554. />
  5555. </product>
  5556. <product id="SPECTOR"
  5557. name="SPECTOR"
  5558. series="Helmet"
  5559. latestVersion="1.0"
  5560. latestVersionVoicePrompt="1.1"
  5561. show = "-1" >
  5562. <productMenu id="protocol"
  5563. type="2" >
  5564. </productMenu>
  5565. <productMenu id="ota"
  5566. type="2" >
  5567. <otaLanguages>
  5568. <otaLanguage
  5569. id="0"
  5570. name="English"
  5571. package="0"
  5572. />
  5573. <otaLanguage
  5574. id="0"
  5575. name="French"
  5576. package="1"
  5577. />
  5578. <otaLanguage
  5579. id="0"
  5580. name="Spanish"
  5581. package="2"
  5582. />
  5583. <otaLanguage
  5584. id="0"
  5585. name="Italian"
  5586. package="3"
  5587. />
  5588. <otaLanguage
  5589. id="0"
  5590. name="German"
  5591. package="4"
  5592. />
  5593. <otaLanguage
  5594. id="0"
  5595. name="Dutch"
  5596. package="5"
  5597. />
  5598. <otaLanguage
  5599. id="0"
  5600. name="Russian"
  5601. package="6"
  5602. />
  5603. <otaLanguage
  5604. id="0"
  5605. name="Chinese"
  5606. package="7"
  5607. />
  5608. <otaLanguage
  5609. id="0"
  5610. name="Korean"
  5611. package="8"
  5612. />
  5613. <otaLanguage
  5614. id="0"
  5615. name="Japanese"
  5616. package="9"
  5617. />
  5618. <otaLanguage
  5619. id="0"
  5620. name="Finnish"
  5621. package="10"
  5622. />
  5623. <otaLanguage
  5624. id="0"
  5625. name="Polish"
  5626. package="11"
  5627. />
  5628. </otaLanguages>
  5629. <otaPackages>
  5630. <package
  5631. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2.img"
  5632. size="5183988"
  5633. />
  5634. <package
  5635. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-fr-FR.img"
  5636. size="5183988"
  5637. />
  5638. <package
  5639. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-es-ES.img"
  5640. size="5183988"
  5641. />
  5642. <package
  5643. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-it-IT.img"
  5644. size="5183988"
  5645. />
  5646. <package
  5647. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-de-DE.img"
  5648. size="5183988"
  5649. />
  5650. <package
  5651. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-nl-NL.img"
  5652. size="5183988"
  5653. />
  5654. <package
  5655. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ru-RU.img"
  5656. size="5183988"
  5657. />
  5658. <package
  5659. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-cmn-CN.img"
  5660. size="5183988"
  5661. />
  5662. <package
  5663. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ko-KR.img"
  5664. size="5183988"
  5665. />
  5666. <package
  5667. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ja-JP.img"
  5668. size="5183988"
  5669. />
  5670. <package
  5671. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-fi-FI.img"
  5672. size="5183988"
  5673. />
  5674. <package
  5675. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-pl-PL.img"
  5676. size="5183988"
  5677. />
  5678. </otaPackages>
  5679. </productMenu>
  5680. <productMenu id="wa"
  5681. type="0" >
  5682. </productMenu>
  5683. <productMenu id="led"
  5684. type="5" >
  5685. </productMenu>
  5686. <productMenu id="led+"
  5687. type="2"
  5688. url="1" >
  5689. </productMenu>
  5690. <productMenu id="meshIntercom+"
  5691. type="3"
  5692. url="2" >
  5693. </productMenu>
  5694. <productMenu id="waveIntercom"
  5695. type="1" >
  5696. </productMenu>
  5697. <productMenu id="fmradio"
  5698. type="0" >
  5699. </productMenu>
  5700. <productMenu id="phone"
  5701. type="1" >
  5702. </productMenu>
  5703. <productMenu id="music"
  5704. type="1" >
  5705. </productMenu>
  5706. <productMenu id="musicSharing"
  5707. type="0" >
  5708. </productMenu>
  5709. <productMenu id="deviceSetting"
  5710. type="1"
  5711. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  5712. <productMenuURL version="1.0"
  5713. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  5714. />
  5715. </productMenu>
  5716. <productMenu id="quickGuide"
  5717. type="0"
  5718. url=""
  5719. size="1.12MB" >
  5720. </productMenu>
  5721. <productMenu id="userGuide"
  5722. type="0"
  5723. url=""
  5724. size="2.0MB" >
  5725. </productMenu>
  5726. <productMenu id="videoGuide"
  5727. type="0"
  5728. url=""
  5729. size="3.41MB" >
  5730. </productMenu>
  5731. <productMenu id="volume"
  5732. type="16" >
  5733. </productMenu>
  5734. <productMenu id="battery"
  5735. type="1" >
  5736. </productMenu>
  5737. <productID id="6A0A"
  5738. />
  5739. <productGroupable type="0"
  5740. />
  5741. </product>
  5742. <product id="OUTLANDER"
  5743. name="OUTLANDER"
  5744. series="Helmet"
  5745. latestVersion="1.0.1"
  5746. latestVersionVoicePrompt="1.0"
  5747. show = "-1" >
  5748. <productMenu id="protocol"
  5749. type="2" >
  5750. </productMenu>
  5751. <productMenu id="ota"
  5752. type="2" >
  5753. <otaLanguages>
  5754. <otaLanguage
  5755. id="0"
  5756. name="English"
  5757. package="0"
  5758. />
  5759. <otaLanguage
  5760. id="0"
  5761. name="French"
  5762. package="1"
  5763. />
  5764. <otaLanguage
  5765. id="0"
  5766. name="Spanish"
  5767. package="2"
  5768. />
  5769. <otaLanguage
  5770. id="0"
  5771. name="Italian"
  5772. package="3"
  5773. />
  5774. <otaLanguage
  5775. id="0"
  5776. name="German"
  5777. package="4"
  5778. />
  5779. <otaLanguage
  5780. id="0"
  5781. name="Dutch"
  5782. package="5"
  5783. />
  5784. <otaLanguage
  5785. id="0"
  5786. name="Russian"
  5787. package="6"
  5788. />
  5789. <otaLanguage
  5790. id="0"
  5791. name="Chinese"
  5792. package="7"
  5793. />
  5794. <otaLanguage
  5795. id="0"
  5796. name="Korean"
  5797. package="8"
  5798. />
  5799. <otaLanguage
  5800. id="0"
  5801. name="Japanese"
  5802. package="9"
  5803. />
  5804. <otaLanguage
  5805. id="0"
  5806. name="Finnish"
  5807. package="10"
  5808. />
  5809. <otaLanguage
  5810. id="0"
  5811. name="Polish"
  5812. package="11"
  5813. />
  5814. </otaLanguages>
  5815. <otaPackages>
  5816. <package
  5817. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0.img"
  5818. size="5183988"
  5819. />
  5820. <package
  5821. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-fr-FR.img"
  5822. size="5183988"
  5823. />
  5824. <package
  5825. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-es-ES.img"
  5826. size="5183988"
  5827. />
  5828. <package
  5829. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-it-IT.img"
  5830. size="5183988"
  5831. />
  5832. <package
  5833. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-de-DE.img"
  5834. size="5183988"
  5835. />
  5836. <package
  5837. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-nl-NL.img"
  5838. size="5183988"
  5839. />
  5840. <package
  5841. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-ru-RU.img"
  5842. size="5183988"
  5843. />
  5844. <package
  5845. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-cmn-CN.img"
  5846. size="5183988"
  5847. />
  5848. <package
  5849. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-ko-KR.img"
  5850. size="5183988"
  5851. />
  5852. <package
  5853. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-ja-JP.img"
  5854. size="5183988"
  5855. />
  5856. <package
  5857. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-fi-FI.img"
  5858. size="5183988"
  5859. />
  5860. <package
  5861. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-pl-PL.img"
  5862. size="5183988"
  5863. />
  5864. </otaPackages>
  5865. </productMenu>
  5866. <productMenu id="wa"
  5867. type="0" >
  5868. </productMenu>
  5869. <productMenu id="led"
  5870. type="5" >
  5871. </productMenu>
  5872. <productMenu id="led+"
  5873. type="2"
  5874. url="1" >
  5875. </productMenu>
  5876. <productMenu id="meshIntercom+"
  5877. type="3"
  5878. url="2" >
  5879. </productMenu>
  5880. <productMenu id="waveIntercom"
  5881. type="1" >
  5882. </productMenu>
  5883. <productMenu id="fmradio"
  5884. type="0" >
  5885. </productMenu>
  5886. <productMenu id="phone"
  5887. type="1" >
  5888. </productMenu>
  5889. <productMenu id="music"
  5890. type="1" >
  5891. </productMenu>
  5892. <productMenu id="musicSharing"
  5893. type="0" >
  5894. </productMenu>
  5895. <productMenu id="deviceSetting"
  5896. type="1"
  5897. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  5898. </productMenu>
  5899. <productMenu id="quickGuide"
  5900. type="0"
  5901. url=""
  5902. size="1.12MB" >
  5903. </productMenu>
  5904. <productMenu id="userGuide"
  5905. type="0"
  5906. url=""
  5907. size="2.0MB" >
  5908. </productMenu>
  5909. <productMenu id="videoGuide"
  5910. type="0"
  5911. url=""
  5912. size="3.41MB" >
  5913. </productMenu>
  5914. <productMenu id="volume"
  5915. type="16" >
  5916. </productMenu>
  5917. <productMenu id="battery"
  5918. type="1" >
  5919. </productMenu>
  5920. <productID id="6A05"
  5921. />
  5922. <productGroupable type="0"
  5923. />
  5924. </product>
  5925. <product id="OUTRUSH2"
  5926. name="OUTRUSH 2"
  5927. series="Helmet"
  5928. latestVersion="1.0.2"
  5929. latestVersionVoicePrompt="1.1"
  5930. show = "-1" >
  5931. <productMenu id="protocol"
  5932. type="2" >
  5933. </productMenu>
  5934. <productMenu id="alexa"
  5935. type="0" >
  5936. </productMenu>
  5937. <productMenu id="ota"
  5938. type="2" >
  5939. <otaPackages>
  5940. <package
  5941. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  5942. size="2945812"
  5943. />
  5944. </otaPackages>
  5945. </productMenu>
  5946. <productMenu id="meshIntercom+"
  5947. type="3"
  5948. url="2" >
  5949. </productMenu>
  5950. <productMenu id="waveIntercom"
  5951. type="1" >
  5952. </productMenu>
  5953. <productMenu id="phone"
  5954. type="1" >
  5955. </productMenu>
  5956. <productMenu id="music"
  5957. type="1" >
  5958. </productMenu>
  5959. <productMenu id="musicSharing"
  5960. type="0" >
  5961. </productMenu>
  5962. <productMenu id="deviceSetting"
  5963. type="1"
  5964. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  5965. <productMenuURL version="1.0"
  5966. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  5967. />
  5968. </productMenu>
  5969. <productMenu id="quickGuide"
  5970. type="0"
  5971. url=""
  5972. size="1.12MB" >
  5973. </productMenu>
  5974. <productMenu id="userGuide"
  5975. type="1"
  5976. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.0_en_250730.pdf"
  5977. size="2.0MB" >
  5978. </productMenu>
  5979. <productMenu id="volume"
  5980. type="12" >
  5981. </productMenu>
  5982. <productMenu id="battery"
  5983. type="1" >
  5984. </productMenu>
  5985. <productID id="684A"
  5986. />
  5987. <productGroupable type="0"
  5988. />
  5989. </product>
  5990. <product id="OUTSTAR2"
  5991. name="OUTSTAR 2"
  5992. series="Helmet"
  5993. latestVersion="1.0.1"
  5994. latestVersionVoicePrompt="1.1"
  5995. show = "-1" >
  5996. <productMenu id="protocol"
  5997. type="2" >
  5998. </productMenu>
  5999. <productMenu id="alexa"
  6000. type="0" >
  6001. </productMenu>
  6002. <productMenu id="ota"
  6003. type="2" >
  6004. <otaPackages>
  6005. <package
  6006. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  6007. size="2945812"
  6008. />
  6009. </otaPackages>
  6010. </productMenu>
  6011. <productMenu id="meshIntercom+"
  6012. type="3"
  6013. url="2" >
  6014. </productMenu>
  6015. <productMenu id="waveIntercom"
  6016. type="1" >
  6017. </productMenu>
  6018. <productMenu id="phone"
  6019. type="1" >
  6020. </productMenu>
  6021. <productMenu id="music"
  6022. type="1" >
  6023. </productMenu>
  6024. <productMenu id="musicSharing"
  6025. type="0" >
  6026. </productMenu>
  6027. <productMenu id="deviceSetting"
  6028. type="1"
  6029. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  6030. </productMenu>
  6031. <productMenu id="quickGuide"
  6032. type="0"
  6033. url=""
  6034. size="1.12MB" >
  6035. </productMenu>
  6036. <productMenu id="userGuide"
  6037. type="1"
  6038. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.0_en_250903.pdf"
  6039. size="2.0MB" >
  6040. </productMenu>
  6041. <productMenu id="volume"
  6042. type="12" >
  6043. </productMenu>
  6044. <productMenu id="battery"
  6045. type="1" >
  6046. </productMenu>
  6047. <productID id="684B"
  6048. />
  6049. <productGroupable type="0"
  6050. />
  6051. </product>
  6052. <product id="SURGE"
  6053. name="SURGE"
  6054. series="Helmet"
  6055. latestVersion="1.1.1"
  6056. latestVersionVoicePrompt="0.9"
  6057. show = "1" >
  6058. <productMenu id="protocol"
  6059. type="2" >
  6060. </productMenu>
  6061. <productMenu id="alexa"
  6062. type="0" >
  6063. </productMenu>
  6064. <productMenu id="ota"
  6065. type="2" >
  6066. <otaPackages>
  6067. <package
  6068. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.1.1-build0.img"
  6069. size="2945812"
  6070. />
  6071. </otaPackages>
  6072. </productMenu>
  6073. <productMenu id="meshIntercom"
  6074. type="30" >
  6075. </productMenu>
  6076. <productMenu id="meshIntercom+"
  6077. type="3"
  6078. url="2" >
  6079. <productMenuType version="1.0.1"
  6080. type="2"
  6081. />
  6082. </productMenu>
  6083. <productMenu id="waveIntercom"
  6084. type="1" >
  6085. <productMenuType version="1.0.9"
  6086. type="0"
  6087. />
  6088. </productMenu>
  6089. <productMenu id="phone"
  6090. type="1" >
  6091. </productMenu>
  6092. <productMenu id="music"
  6093. type="1" >
  6094. </productMenu>
  6095. <productMenu id="musicSharing"
  6096. type="0" >
  6097. </productMenu>
  6098. <productMenu id="deviceSetting"
  6099. type="1"
  6100. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml" >
  6101. <productMenuURL version="1.0.1"
  6102. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6103. />
  6104. </productMenu>
  6105. <productMenu id="quickGuide"
  6106. type="0"
  6107. url=""
  6108. size="1.12MB" >
  6109. </productMenu>
  6110. <productMenu id="userGuide"
  6111. type="1"
  6112. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.0_en_250408.pdf"
  6113. size="2.0MB" >
  6114. </productMenu>
  6115. <productMenu id="volume"
  6116. type="12" >
  6117. </productMenu>
  6118. <productMenu id="battery"
  6119. type="1" >
  6120. </productMenu>
  6121. <productID id="6840"
  6122. />
  6123. <productGroupable type="0"
  6124. />
  6125. </product>
  6126. <product id="Cavalry2"
  6127. name="Cavalry 2"
  6128. series="Helmet"
  6129. latestVersion="1.1.1"
  6130. latestVersionVoicePrompt="0.9"
  6131. show = "1" >
  6132. <productMenu id="protocol"
  6133. type="2" >
  6134. </productMenu>
  6135. <productMenu id="alexa"
  6136. type="0" >
  6137. </productMenu>
  6138. <productMenu id="ota"
  6139. type="2" >
  6140. <otaPackages>
  6141. <package
  6142. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.1.1-build0.img"
  6143. size="3144148"
  6144. />
  6145. </otaPackages>
  6146. </productMenu>
  6147. <productMenu id="wa"
  6148. type="0" >
  6149. </productMenu>
  6150. <productMenu id="meshIntercom"
  6151. type="30" >
  6152. </productMenu>
  6153. <productMenu id="meshIntercom+"
  6154. type="3"
  6155. url="2" >
  6156. <productMenuType version="1.0"
  6157. type="2"
  6158. />
  6159. </productMenu>
  6160. <productMenu id="waveIntercom"
  6161. type="1" >
  6162. <productMenuType version="1.0.9"
  6163. type="0"
  6164. />
  6165. </productMenu>
  6166. <productMenu id="phone"
  6167. type="1" >
  6168. </productMenu>
  6169. <productMenu id="music"
  6170. type="1" >
  6171. </productMenu>
  6172. <productMenu id="musicSharing"
  6173. type="0" >
  6174. </productMenu>
  6175. <productMenu id="deviceSetting"
  6176. type="1"
  6177. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_02.xml" >
  6178. <productMenuURL version="1.0"
  6179. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_01.xml"
  6180. />
  6181. </productMenu>
  6182. <productMenu id="quickGuide"
  6183. type="0"
  6184. url=""
  6185. size="1.12MB" >
  6186. </productMenu>
  6187. <productMenu id="userGuide"
  6188. type="1"
  6189. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.0_en_250415.pdf"
  6190. size="2.0MB" >
  6191. </productMenu>
  6192. <productMenu id="connectGuide"
  6193. type="1"
  6194. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6195. size="1.12MB" >
  6196. </productMenu>
  6197. <productMenu id="volume"
  6198. type="12" >
  6199. </productMenu>
  6200. <productMenu id="battery"
  6201. type="1" >
  6202. </productMenu>
  6203. <productID id="6839"
  6204. />
  6205. <productGroupable type="0"
  6206. />
  6207. </product>
  6208. <product id="Cavalry"
  6209. name="Cavalry"
  6210. series="Helmet"
  6211. latestVersion="1.2.2"
  6212. show = "1" >
  6213. <productMenu id="protocol"
  6214. type="0">
  6215. </productMenu>
  6216. <productMenu id="sip"
  6217. type="1" >
  6218. </productMenu>
  6219. <productMenu id="bluetoothIntercom"
  6220. type="1" >
  6221. </productMenu>
  6222. <productMenu id="phone"
  6223. type="2" >
  6224. </productMenu>
  6225. <productMenu id="fmradio"
  6226. type="3" >
  6227. </productMenu>
  6228. <productMenu id="deviceSetting"
  6229. type="1"
  6230. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  6231. <productMenuURL version="1.9"
  6232. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  6233. />
  6234. <productMenuURL version="1.0.1"
  6235. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  6236. />
  6237. </productMenu>
  6238. <productMenu id="quickGuide"
  6239. type="1"
  6240. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  6241. size="795KB" >
  6242. </productMenu>
  6243. <productMenu id="userGuide"
  6244. type="1"
  6245. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  6246. size="1.87MB" >
  6247. </productMenu>
  6248. <productMenu id="connectGuide"
  6249. type="1"
  6250. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6251. size="1.12MB" >
  6252. </productMenu>
  6253. <productID id="5524"
  6254. />
  6255. <productGroupable type="0"
  6256. />
  6257. </product>
  6258. <product id="Cavalry_Lite"
  6259. name="Cavalry Lite"
  6260. series="Helmet"
  6261. latestVersion="1.0.2"
  6262. show = "1" >
  6263. <productMenu id="protocol"
  6264. type="0">
  6265. </productMenu>
  6266. <productMenu id="sip"
  6267. type="1" >
  6268. </productMenu>
  6269. <productMenu id="bluetoothIntercom"
  6270. type="1" >
  6271. </productMenu>
  6272. <productMenu id="phone"
  6273. type="2" >
  6274. </productMenu>
  6275. <productMenu id="fmradio"
  6276. type="3" >
  6277. </productMenu>
  6278. <productMenu id="deviceSetting"
  6279. type="1"
  6280. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  6281. </productMenu>
  6282. <productMenu id="userGuide"
  6283. type="1"
  6284. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  6285. size="1.74MB" >
  6286. </productMenu>
  6287. <productMenu id="connectGuide"
  6288. type="1"
  6289. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6290. size="1.12MB" >
  6291. </productMenu>
  6292. <productID id="5536"
  6293. />
  6294. <productGroupable type="0"
  6295. />
  6296. </product>
  6297. <product id="SF4"
  6298. name="SF4"
  6299. series="SF"
  6300. latestVersion="1.1.5"
  6301. show = "-1" >
  6302. <productMenu id="protocol"
  6303. type="1"
  6304. url="3">
  6305. </productMenu>
  6306. <productMenu id="sip"
  6307. type="1" >
  6308. </productMenu>
  6309. <productMenu id="bluetoothIntercom"
  6310. type="1" >
  6311. </productMenu>
  6312. <productMenu id="phone"
  6313. type="1" >
  6314. </productMenu>
  6315. <productMenu id="music"
  6316. type="1" >
  6317. </productMenu>
  6318. <productMenu id="fmradio"
  6319. type="1" >
  6320. </productMenu>
  6321. <productMenu id="deviceSetting"
  6322. type="1"
  6323. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6324. <productMenuURL version="1.0.1"
  6325. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  6326. />
  6327. </productMenu>
  6328. <productMenu id="quickGuide"
  6329. type="1"
  6330. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  6331. size="607KB" >
  6332. </productMenu>
  6333. <productMenu id="userGuide"
  6334. type="1"
  6335. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  6336. size="1.91MB" >
  6337. </productMenu>
  6338. <productMenu id="volume"
  6339. type="4" >
  6340. </productMenu>
  6341. <productID id="5414"
  6342. />
  6343. <productGroupable type="0"
  6344. />
  6345. </product>
  6346. <product id="SF4"
  6347. name="SF4"
  6348. series="SF"
  6349. latestVersion="3.4.2"
  6350. show = "1" >
  6351. <productMenu id="protocol"
  6352. type="2" >
  6353. </productMenu>
  6354. <productMenu id="sip"
  6355. type="1" >
  6356. </productMenu>
  6357. <productMenu id="bluetoothIntercom"
  6358. type="1" >
  6359. </productMenu>
  6360. <productMenu id="phone"
  6361. type="1" >
  6362. </productMenu>
  6363. <productMenu id="music"
  6364. type="1" >
  6365. </productMenu>
  6366. <productMenu id="fmradio"
  6367. type="1" >
  6368. </productMenu>
  6369. <productMenu id="deviceSetting"
  6370. type="1"
  6371. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  6372. <productMenuURL version="3.0"
  6373. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  6374. />
  6375. </productMenu>
  6376. <productMenu id="quickGuide"
  6377. type="0"
  6378. url=""
  6379. size="934KB" >
  6380. </productMenu>
  6381. <productMenu id="userGuide"
  6382. type="1"
  6383. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  6384. size="1.14MB" >
  6385. </productMenu>
  6386. <productMenu id="connectGuide"
  6387. type="1"
  6388. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6389. size="1.12MB" >
  6390. </productMenu>
  6391. <productMenu id="volume"
  6392. type="15" >
  6393. </productMenu>
  6394. <productID id="3370"
  6395. />
  6396. <productGroupable type="0"
  6397. />
  6398. </product>
  6399. <product id="SF2"
  6400. name="SF2"
  6401. series="SF"
  6402. latestVersion="1.2.1"
  6403. show = "-1" >
  6404. <productMenu id="protocol"
  6405. type="1"
  6406. url="2">
  6407. </productMenu>
  6408. <productMenu id="sip"
  6409. type="1" >
  6410. </productMenu>
  6411. <productMenu id="bluetoothIntercom"
  6412. type="1" >
  6413. </productMenu>
  6414. <productMenu id="phone"
  6415. type="1" >
  6416. </productMenu>
  6417. <productMenu id="music"
  6418. type="1" >
  6419. </productMenu>
  6420. <productMenu id="fmradio"
  6421. type="1" >
  6422. </productMenu>
  6423. <productMenu id="deviceSetting"
  6424. type="1"
  6425. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6426. <productMenuURL version="1.0.1"
  6427. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  6428. />
  6429. </productMenu>
  6430. <productMenu id="quickGuide"
  6431. type="1"
  6432. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  6433. size="607KB" >
  6434. </productMenu>
  6435. <productMenu id="userGuide"
  6436. type="1"
  6437. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  6438. size="1.91MB" >
  6439. </productMenu>
  6440. <productMenu id="volume"
  6441. type="4" >
  6442. </productMenu>
  6443. <productID id="5412"
  6444. />
  6445. <productGroupable type="0"
  6446. />
  6447. </product>
  6448. <product id="SF2"
  6449. name="SF2"
  6450. series="SF"
  6451. latestVersion="3.3.2"
  6452. show = "1" >
  6453. <productMenu id="protocol"
  6454. type="2" >
  6455. </productMenu>
  6456. <productMenu id="sip"
  6457. type="1" >
  6458. </productMenu>
  6459. <productMenu id="bluetoothIntercom"
  6460. type="1" >
  6461. </productMenu>
  6462. <productMenu id="phone"
  6463. type="1" >
  6464. </productMenu>
  6465. <productMenu id="music"
  6466. type="1" >
  6467. </productMenu>
  6468. <productMenu id="fmradio"
  6469. type="0" >
  6470. </productMenu>
  6471. <productMenu id="deviceSetting"
  6472. type="1"
  6473. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  6474. <productMenuURL version="3.0"
  6475. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  6476. />
  6477. </productMenu>
  6478. <productMenu id="quickGuide"
  6479. type="0"
  6480. url=""
  6481. size="934KB" >
  6482. </productMenu>
  6483. <productMenu id="userGuide"
  6484. type="1"
  6485. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  6486. size="1.14MB" >
  6487. </productMenu>
  6488. <productMenu id="connectGuide"
  6489. type="1"
  6490. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6491. size="1.12MB" >
  6492. </productMenu>
  6493. <productMenu id="volume"
  6494. type="15" >
  6495. </productMenu>
  6496. <productID id="3360"
  6497. />
  6498. <productGroupable type="0"
  6499. />
  6500. </product>
  6501. <product id="SF1"
  6502. name="SF1"
  6503. series="SF"
  6504. latestVersion="2.0.5"
  6505. show = "-1" >
  6506. <productMenu id="protocol"
  6507. type="1"
  6508. url="1">
  6509. </productMenu>
  6510. <productMenu id="sip"
  6511. type="1" >
  6512. </productMenu>
  6513. <productMenu id="bluetoothIntercom"
  6514. type="1" >
  6515. <productMenuType version="1.1"
  6516. type="0"
  6517. />
  6518. </productMenu>
  6519. <productMenu id="phone"
  6520. type="1" >
  6521. </productMenu>
  6522. <productMenu id="music"
  6523. type="1" >
  6524. </productMenu>
  6525. <productMenu id="deviceSetting"
  6526. type="1"
  6527. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  6528. <productMenuURL version="1.1"
  6529. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  6530. />
  6531. <productMenuURL version="1.0"
  6532. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  6533. />
  6534. </productMenu>
  6535. <productMenu id="quickGuide"
  6536. type="1"
  6537. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  6538. size="401KB" >
  6539. </productMenu>
  6540. <productMenu id="userGuide"
  6541. type="1"
  6542. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  6543. size="1.91MB" >
  6544. </productMenu>
  6545. <productMenu id="volume"
  6546. type="3" >
  6547. </productMenu>
  6548. <productID id="5410"
  6549. />
  6550. <productGroupable type="0"
  6551. />
  6552. </product>
  6553. <product id="SF1"
  6554. name="SF1"
  6555. series="SF"
  6556. latestVersion="3.3.2"
  6557. show = "1" >
  6558. <productMenu id="protocol"
  6559. type="2" >
  6560. </productMenu>
  6561. <productMenu id="sip"
  6562. type="1" >
  6563. </productMenu>
  6564. <productMenu id="bluetoothIntercom"
  6565. type="1" >
  6566. </productMenu>
  6567. <productMenu id="phone"
  6568. type="1" >
  6569. </productMenu>
  6570. <productMenu id="music"
  6571. type="1" >
  6572. </productMenu>
  6573. <productMenu id="fmradio"
  6574. type="0" >
  6575. </productMenu>
  6576. <productMenu id="deviceSetting"
  6577. type="1"
  6578. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  6579. <productMenuURL version="3.0"
  6580. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  6581. />
  6582. </productMenu>
  6583. <productMenu id="quickGuide"
  6584. type="0"
  6585. url=""
  6586. size="934KB" >
  6587. </productMenu>
  6588. <productMenu id="userGuide"
  6589. type="1"
  6590. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  6591. size="1.14MB" >
  6592. </productMenu>
  6593. <productMenu id="connectGuide"
  6594. type="1"
  6595. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6596. size="1.12MB" >
  6597. </productMenu>
  6598. <productMenu id="volume"
  6599. type="15" >
  6600. </productMenu>
  6601. <productID id="3350"
  6602. />
  6603. <productGroupable type="0"
  6604. />
  6605. </product>
  6606. <product id="SFR"
  6607. name="SFR"
  6608. series="SF"
  6609. latestVersion="1.1.1"
  6610. show = "1" >
  6611. <productMenu id="protocol"
  6612. type="1"
  6613. url="3">
  6614. </productMenu>
  6615. <productMenu id="sip"
  6616. type="1" >
  6617. </productMenu>
  6618. <productMenu id="bluetoothIntercom"
  6619. type="1" >
  6620. </productMenu>
  6621. <productMenu id="phone"
  6622. type="1" >
  6623. </productMenu>
  6624. <productMenu id="music"
  6625. type="1" >
  6626. </productMenu>
  6627. <productMenu id="fmradio"
  6628. type="1" >
  6629. </productMenu>
  6630. <productMenu id="deviceSetting"
  6631. type="1"
  6632. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6633. </productMenu>
  6634. <productMenu id="quickGuide"
  6635. type="1"
  6636. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  6637. size="607KB" >
  6638. </productMenu>
  6639. <productMenu id="userGuide"
  6640. type="1"
  6641. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  6642. size="1.91MB" >
  6643. </productMenu>
  6644. <productMenu id="volume"
  6645. type="4" >
  6646. </productMenu>
  6647. <productID id="5418"
  6648. />
  6649. <productGroupable type="0"
  6650. />
  6651. </product>
  6652. <product id="20S"
  6653. name="20S"
  6654. series="20"
  6655. latestVersion="2.2.3"
  6656. show = "1" >
  6657. <productMenu id="protocol"
  6658. type="0">
  6659. </productMenu>
  6660. <productMenu id="wa"
  6661. type="5" >
  6662. </productMenu>
  6663. <productMenu id="sip"
  6664. type="1" >
  6665. <productMenuType version="1.0"
  6666. type="0"
  6667. />
  6668. </productMenu>
  6669. <productMenu id="bluetoothIntercom"
  6670. type="1" >
  6671. <productMenuType version="1.0"
  6672. type="0"
  6673. />
  6674. </productMenu>
  6675. <productMenu id="intercomSetting"
  6676. type="1" >
  6677. </productMenu>
  6678. <productMenu id="phone"
  6679. type="2" >
  6680. </productMenu>
  6681. <productMenu id="fmradio"
  6682. type="3" >
  6683. </productMenu>
  6684. <productMenu id="deviceSetting"
  6685. type="1"
  6686. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  6687. <productMenuURL version="2.0.2"
  6688. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  6689. />
  6690. <productMenuURL version="1.5"
  6691. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  6692. />
  6693. <productMenuURL version="1.4.1"
  6694. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  6695. />
  6696. <productMenuURL version="1.1"
  6697. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  6698. />
  6699. <productMenuURL version="1.0"
  6700. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  6701. />
  6702. </productMenu>
  6703. <productMenu id="quickGuide"
  6704. type="0"
  6705. url=""
  6706. size="264KB" >
  6707. </productMenu>
  6708. <productMenu id="userGuide"
  6709. type="1"
  6710. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  6711. size="3.09MB" >
  6712. </productMenu>
  6713. <productMenu id="connectGuide"
  6714. type="1"
  6715. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  6716. size="1.12MB" >
  6717. </productMenu>
  6718. <productID id="4210"
  6719. />
  6720. <productGroupable type="1"
  6721. />
  6722. </product>
  6723. <product id="20S_EVO"
  6724. name="20S EVO"
  6725. series="20"
  6726. latestVersion="2.2.3"
  6727. show = "1" >
  6728. <productMenu id="protocol"
  6729. type="0">
  6730. </productMenu>
  6731. <productMenu id="wa"
  6732. type="5" >
  6733. </productMenu>
  6734. <productMenu id="sip"
  6735. type="1" >
  6736. <productMenuType version="1.0"
  6737. type="0"
  6738. />
  6739. </productMenu>
  6740. <productMenu id="bluetoothIntercom"
  6741. type="1" >
  6742. <productMenuType version="1.0"
  6743. type="0"
  6744. />
  6745. </productMenu>
  6746. <productMenu id="intercomSetting"
  6747. type="1" >
  6748. </productMenu>
  6749. <productMenu id="phone"
  6750. type="2" >
  6751. </productMenu>
  6752. <productMenu id="fmradio"
  6753. type="3" >
  6754. </productMenu>
  6755. <productMenu id="deviceSetting"
  6756. type="1"
  6757. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  6758. <productMenuURL version="2.0.2"
  6759. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  6760. />
  6761. <productMenuURL version="1.5"
  6762. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  6763. />
  6764. <productMenuURL version="1.4.1"
  6765. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  6766. />
  6767. <productMenuURL version="1.1"
  6768. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  6769. />
  6770. <productMenuURL version="1.0"
  6771. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  6772. />
  6773. </productMenu>
  6774. <productMenu id="quickGuide"
  6775. type="0"
  6776. url=""
  6777. size="264KB" >
  6778. </productMenu>
  6779. <productMenu id="userGuide"
  6780. type="1"
  6781. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  6782. size="3.09MB" >
  6783. </productMenu>
  6784. <productMenu id="connectGuide"
  6785. type="1"
  6786. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  6787. size="1.12MB" >
  6788. </productMenu>
  6789. <productID id="4210"
  6790. />
  6791. <productProductKey key="16"
  6792. />
  6793. <productGroupable type="1"
  6794. />
  6795. </product>
  6796. <product id="10S"
  6797. name="10S"
  6798. series="10"
  6799. latestVersion="3.0.1"
  6800. show = "1" >
  6801. <productMenu id="protocol"
  6802. type="3" >
  6803. </productMenu>
  6804. <productMenu id="sip"
  6805. type="1" >
  6806. </productMenu>
  6807. <productMenu id="bluetoothIntercom"
  6808. type="1" >
  6809. </productMenu>
  6810. <productMenu id="phone"
  6811. type="1" >
  6812. </productMenu>
  6813. <productMenu id="deviceSetting"
  6814. type="1"
  6815. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  6816. </productMenu>
  6817. <productMenu id="quickGuide"
  6818. type="1"
  6819. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  6820. size="934KB" >
  6821. </productMenu>
  6822. <productMenu id="userGuide"
  6823. type="1"
  6824. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  6825. size="1.14MB" >
  6826. </productMenu>
  6827. <productMenu id="connectGuide"
  6828. type="1"
  6829. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6830. size="1.12MB" >
  6831. </productMenu>
  6832. <productID id="3380"
  6833. />
  6834. <productGroupable type="0"
  6835. />
  6836. </product>
  6837. <product id="10S"
  6838. name="10S"
  6839. series="10"
  6840. latestVersion="2.1.1"
  6841. show = "-1" >
  6842. <productMenu id="protocol"
  6843. type="0">
  6844. </productMenu>
  6845. <productMenu id="sip"
  6846. type="1" >
  6847. </productMenu>
  6848. <productMenu id="bluetoothIntercom"
  6849. type="1" >
  6850. </productMenu>
  6851. <productMenu id="phone"
  6852. type="2" >
  6853. </productMenu>
  6854. <productMenu id="fmradio"
  6855. type="3" >
  6856. </productMenu>
  6857. <productMenu id="deviceSetting"
  6858. type="1"
  6859. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  6860. <productMenuURL version="1.5"
  6861. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  6862. />
  6863. <productMenuURL version="1.3.1"
  6864. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  6865. />
  6866. </productMenu>
  6867. <productMenu id="quickGuide"
  6868. type="1"
  6869. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  6870. size="310KB" >
  6871. </productMenu>
  6872. <productMenu id="userGuide"
  6873. type="1"
  6874. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  6875. size="1.57MB" >
  6876. </productMenu>
  6877. <productID id="5530"
  6878. />
  6879. <productGroupable type="0"
  6880. />
  6881. </product>
  6882. <product id="10R"
  6883. name="10R"
  6884. series="10"
  6885. latestVersion="2.1.1"
  6886. show = "1" >
  6887. <productMenu id="protocol"
  6888. type="0">
  6889. </productMenu>
  6890. <productMenu id="sip"
  6891. type="1" >
  6892. <productMenuType version="1.0.2"
  6893. type="0"
  6894. />
  6895. </productMenu>
  6896. <productMenu id="bluetoothIntercom"
  6897. type="1" >
  6898. <productMenuType version="1.0.2"
  6899. type="0"
  6900. />
  6901. </productMenu>
  6902. <productMenu id="phone"
  6903. type="2" >
  6904. </productMenu>
  6905. <productMenu id="fmradio"
  6906. type="3" >
  6907. </productMenu>
  6908. <productMenu id="deviceSetting"
  6909. type="1"
  6910. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6911. <productMenuURL version="1.4"
  6912. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  6913. />
  6914. <productMenuURL version="1.2.1"
  6915. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  6916. />
  6917. <productMenuURL version="1.0.2"
  6918. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  6919. />
  6920. <productMenuURL version="1.0"
  6921. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  6922. />
  6923. </productMenu>
  6924. <productMenu id="quickGuide"
  6925. type="1"
  6926. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  6927. size="400KB" >
  6928. </productMenu>
  6929. <productMenu id="userGuide"
  6930. type="1"
  6931. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  6932. size="2.75MB" >
  6933. </productMenu>
  6934. <productMenu id="connectGuide"
  6935. type="1"
  6936. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6937. size="1.12MB" >
  6938. </productMenu>
  6939. <productID id="5520"
  6940. />
  6941. <productGroupable type="0"
  6942. />
  6943. </product>
  6944. <product id="10C_EVO"
  6945. name="10C EVO"
  6946. series="10"
  6947. latestVersion="1.7"
  6948. show = "1" >
  6949. <productMenu id="protocol"
  6950. type="0">
  6951. </productMenu>
  6952. <productMenu id="sip"
  6953. type="1" >
  6954. </productMenu>
  6955. <productMenu id="bluetoothIntercom"
  6956. type="1" >
  6957. </productMenu>
  6958. <productMenu id="phone"
  6959. type="2" >
  6960. </productMenu>
  6961. <productMenu id="fmradio"
  6962. type="3" >
  6963. </productMenu>
  6964. <productMenu id="deviceSetting"
  6965. type="1"
  6966. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  6967. <productMenuURL version="1.3.1"
  6968. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  6969. />
  6970. </productMenu>
  6971. <productMenu id="quickGuide"
  6972. type="1"
  6973. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  6974. size="1.32MB" >
  6975. </productMenu>
  6976. <productMenu id="userGuide"
  6977. type="1"
  6978. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  6979. size="1.68MB" >
  6980. </productMenu>
  6981. <productMenu id="connectGuide"
  6982. type="1"
  6983. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  6984. size="1.12MB" >
  6985. </productMenu>
  6986. <productID id="5570"
  6987. />
  6988. <productGroupable type="0"
  6989. />
  6990. </product>
  6991. <product id="10C_Pro"
  6992. name="10C Pro"
  6993. series="10"
  6994. latestVersion="2.7.1"
  6995. show = "1" >
  6996. <productMenu id="protocol"
  6997. type="0">
  6998. </productMenu>
  6999. <productMenu id="sip"
  7000. type="1" >
  7001. </productMenu>
  7002. <productMenu id="bluetoothIntercom"
  7003. type="1" >
  7004. </productMenu>
  7005. <productMenu id="phone"
  7006. type="2" >
  7007. </productMenu>
  7008. <productMenu id="fmradio"
  7009. type="3" >
  7010. </productMenu>
  7011. <productMenu id="deviceSetting"
  7012. type="1"
  7013. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  7014. <productMenuURL version="2.5.1"
  7015. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  7016. />
  7017. <productMenuURL version="1.0"
  7018. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  7019. />
  7020. </productMenu>
  7021. <productMenu id="quickGuide"
  7022. type="1"
  7023. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  7024. size="651KB" >
  7025. </productMenu>
  7026. <productMenu id="userGuide"
  7027. type="1"
  7028. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  7029. size="2.34MB" >
  7030. </productMenu>
  7031. <productMenu id="connectGuide"
  7032. type="1"
  7033. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7034. size="1.12MB" >
  7035. </productMenu>
  7036. <productID id="5580"
  7037. />
  7038. <productGroupable type="0"
  7039. />
  7040. </product>
  7041. <product id="10C"
  7042. name="10C"
  7043. series="10"
  7044. latestVersion="3.0.4"
  7045. show = "1" >
  7046. <productMenu id="protocol"
  7047. type="0">
  7048. </productMenu>
  7049. <productMenu id="sip"
  7050. type="1" >
  7051. <productMenuType version="1.0.4"
  7052. type="0"
  7053. />
  7054. </productMenu>
  7055. <productMenu id="bluetoothIntercom"
  7056. type="1" >
  7057. <productMenuType version="1.0.4"
  7058. type="0"
  7059. />
  7060. </productMenu>
  7061. <productMenu id="phone"
  7062. type="2" >
  7063. </productMenu>
  7064. <productMenu id="fmradio"
  7065. type="3" >
  7066. </productMenu>
  7067. <productMenu id="deviceSetting"
  7068. type="1"
  7069. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  7070. <productMenuURL version="2.3"
  7071. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  7072. />
  7073. <productMenuURL version="2.1.1"
  7074. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  7075. />
  7076. <productMenuURL version="1.0.4"
  7077. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  7078. />
  7079. <productMenuURL version="1.0.2"
  7080. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  7081. />
  7082. </productMenu>
  7083. <productMenu id="quickGuide"
  7084. type="1"
  7085. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  7086. size="935KB" >
  7087. </productMenu>
  7088. <productMenu id="userGuide"
  7089. type="1"
  7090. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  7091. size="2.82MB" >
  7092. </productMenu>
  7093. <productMenu id="connectGuide"
  7094. type="1"
  7095. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7096. size="1.12MB" >
  7097. </productMenu>
  7098. <productID id="5510"
  7099. />
  7100. <productGroupable type="0"
  7101. />
  7102. </product>
  7103. <product id="10U_GT_AIR"
  7104. name="10U GT-Air"
  7105. series="10"
  7106. latestVersion="2.0.4"
  7107. show = "1" >
  7108. <productMenu id="protocol"
  7109. type="0">
  7110. </productMenu>
  7111. <productMenu id="sip"
  7112. type="1" >
  7113. <productMenuType version="1.0.2"
  7114. type="0"
  7115. />
  7116. </productMenu>
  7117. <productMenu id="bluetoothIntercom"
  7118. type="1" >
  7119. <productMenuType version="1.0.2"
  7120. type="0"
  7121. />
  7122. </productMenu>
  7123. <productMenu id="phone"
  7124. type="2" >
  7125. </productMenu>
  7126. <productMenu id="fmradio"
  7127. type="3" >
  7128. </productMenu>
  7129. <productMenu id="deviceSetting"
  7130. type="1"
  7131. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  7132. <productMenuURL version="1.3.2"
  7133. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  7134. />
  7135. <productMenuURL version="1.0.2"
  7136. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  7137. />
  7138. </productMenu>
  7139. <productMenu id="quickGuide"
  7140. type="1"
  7141. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  7142. size="685KB" >
  7143. </productMenu>
  7144. <productMenu id="userGuide"
  7145. type="1"
  7146. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  7147. size="684KB" >
  7148. </productMenu>
  7149. <productMenu id="connectGuide"
  7150. type="1"
  7151. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  7152. size="1.12MB" >
  7153. </productMenu>
  7154. <productID id="5610"
  7155. />
  7156. <productGroupable type="0"
  7157. />
  7158. </product>
  7159. <product id="10U_NEOTEC"
  7160. name="10U Neotec"
  7161. series="10"
  7162. latestVersion="2.0.4"
  7163. show = "1" >
  7164. <productMenu id="protocol"
  7165. type="0">
  7166. </productMenu>
  7167. <productMenu id="sip"
  7168. type="1" >
  7169. <productMenuType version="1.0.2"
  7170. type="0"
  7171. />
  7172. </productMenu>
  7173. <productMenu id="bluetoothIntercom"
  7174. type="1" >
  7175. <productMenuType version="1.0.2"
  7176. type="0"
  7177. />
  7178. </productMenu>
  7179. <productMenu id="phone"
  7180. type="2" >
  7181. </productMenu>
  7182. <productMenu id="fmradio"
  7183. type="3" >
  7184. </productMenu>
  7185. <productMenu id="deviceSetting"
  7186. type="1"
  7187. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  7188. <productMenuURL version="1.3.2"
  7189. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  7190. />
  7191. <productMenuURL version="1.0.2"
  7192. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  7193. />
  7194. </productMenu>
  7195. <productMenu id="quickGuide"
  7196. type="1"
  7197. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  7198. size="689KB" >
  7199. </productMenu>
  7200. <productMenu id="userGuide"
  7201. type="1"
  7202. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  7203. size="684KB" >
  7204. </productMenu>
  7205. <productMenu id="connectGuide"
  7206. type="1"
  7207. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  7208. size="1.12MB" >
  7209. </productMenu>
  7210. <productID id="5611"
  7211. />
  7212. <productGroupable type="0"
  7213. />
  7214. </product>
  7215. <product id="10U_J_CRUISE"
  7216. name="10U J-Cruise"
  7217. series="10"
  7218. latestVersion="2.0.4"
  7219. show = "1" >
  7220. <productMenu id="protocol"
  7221. type="0">
  7222. </productMenu>
  7223. <productMenu id="sip"
  7224. type="1" >
  7225. <productMenuType version="1.0.2"
  7226. type="0"
  7227. />
  7228. </productMenu>
  7229. <productMenu id="bluetoothIntercom"
  7230. type="1" >
  7231. <productMenuType version="1.0.2"
  7232. type="0"
  7233. />
  7234. </productMenu>
  7235. <productMenu id="phone"
  7236. type="2" >
  7237. </productMenu>
  7238. <productMenu id="fmradio"
  7239. type="3" >
  7240. </productMenu>
  7241. <productMenu id="deviceSetting"
  7242. type="1"
  7243. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  7244. <productMenuURL version="1.3.2"
  7245. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  7246. />
  7247. <productMenuURL version="1.0.2"
  7248. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  7249. />
  7250. </productMenu>
  7251. <productMenu id="quickGuide"
  7252. type="1"
  7253. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  7254. size="686KB" >
  7255. </productMenu>
  7256. <productMenu id="userGuide"
  7257. type="1"
  7258. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  7259. size="684KB" >
  7260. </productMenu>
  7261. <productMenu id="connectGuide"
  7262. type="1"
  7263. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  7264. size="1.12MB" >
  7265. </productMenu>
  7266. <productID id="5612"
  7267. />
  7268. <productGroupable type="0"
  7269. />
  7270. </product>
  7271. <product id="10U_C3"
  7272. name="10U C3/C3Pro"
  7273. series="10"
  7274. latestVersion="2.0.4"
  7275. show = "1" >
  7276. <productMenu id="protocol"
  7277. type="0">
  7278. </productMenu>
  7279. <productMenu id="sip"
  7280. type="1" >
  7281. <productMenuType version="1.0.2"
  7282. type="0"
  7283. />
  7284. </productMenu>
  7285. <productMenu id="bluetoothIntercom"
  7286. type="1" >
  7287. <productMenuType version="1.0.2"
  7288. type="0"
  7289. />
  7290. </productMenu>
  7291. <productMenu id="phone"
  7292. type="2" >
  7293. </productMenu>
  7294. <productMenu id="fmradio"
  7295. type="3" >
  7296. </productMenu>
  7297. <productMenu id="deviceSetting"
  7298. type="1"
  7299. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  7300. <productMenuURL version="1.3.2"
  7301. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  7302. />
  7303. <productMenuURL version="1.0.2"
  7304. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  7305. />
  7306. </productMenu>
  7307. <productMenu id="quickGuide"
  7308. type="1"
  7309. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  7310. size="199KB" >
  7311. </productMenu>
  7312. <productMenu id="userGuide"
  7313. type="1"
  7314. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  7315. size="684KB" >
  7316. </productMenu>
  7317. <productMenu id="connectGuide"
  7318. type="1"
  7319. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  7320. size="1.12MB" >
  7321. </productMenu>
  7322. <productID id="5620"
  7323. />
  7324. <productGroupable type="0"
  7325. />
  7326. </product>
  7327. <product id="10U_ARAI"
  7328. name="10U Arai"
  7329. series="10"
  7330. latestVersion="2.0.4"
  7331. show = "1" >
  7332. <productMenu id="protocol"
  7333. type="0">
  7334. </productMenu>
  7335. <productMenu id="sip"
  7336. type="1" >
  7337. <productMenuType version="1.0.2"
  7338. type="0"
  7339. />
  7340. </productMenu>
  7341. <productMenu id="bluetoothIntercom"
  7342. type="1" >
  7343. <productMenuType version="1.0.2"
  7344. type="0"
  7345. />
  7346. </productMenu>
  7347. <productMenu id="phone"
  7348. type="2" >
  7349. </productMenu>
  7350. <productMenu id="fmradio"
  7351. type="3" >
  7352. </productMenu>
  7353. <productMenu id="deviceSetting"
  7354. type="1"
  7355. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  7356. <productMenuURL version="1.3.2"
  7357. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  7358. />
  7359. <productMenuURL version="1.0.2"
  7360. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  7361. />
  7362. </productMenu>
  7363. <productMenu id="quickGuide"
  7364. type="1"
  7365. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  7366. size="689KB" >
  7367. </productMenu>
  7368. <productMenu id="userGuide"
  7369. type="1"
  7370. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  7371. size="684KB" >
  7372. </productMenu>
  7373. <productMenu id="connectGuide"
  7374. type="1"
  7375. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  7376. size="1.12MB" >
  7377. </productMenu>
  7378. <productID id="5621"
  7379. />
  7380. <productGroupable type="0"
  7381. />
  7382. </product>
  7383. <product id="10Upad"
  7384. name="10Upad"
  7385. series="10"
  7386. latestVersion="2.0.3"
  7387. show = "1" >
  7388. <productMenu id="protocol"
  7389. type="0">
  7390. </productMenu>
  7391. <productMenu id="sip"
  7392. type="1" >
  7393. </productMenu>
  7394. <productMenu id="bluetoothIntercom"
  7395. type="1" >
  7396. </productMenu>
  7397. <productMenu id="phone"
  7398. type="2" >
  7399. </productMenu>
  7400. <productMenu id="fmradio"
  7401. type="3" >
  7402. </productMenu>
  7403. <productMenu id="deviceSetting"
  7404. type="1"
  7405. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  7406. <productMenuURL version="1.0.3"
  7407. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  7408. />
  7409. </productMenu>
  7410. <productMenu id="quickGuide"
  7411. type="1"
  7412. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  7413. size="615KB" >
  7414. </productMenu>
  7415. <productMenu id="userGuide"
  7416. type="1"
  7417. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  7418. size="0.99MB" >
  7419. </productMenu>
  7420. <productMenu id="connectGuide"
  7421. type="1"
  7422. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7423. size="1.12MB" >
  7424. </productMenu>
  7425. <productID id="6210"
  7426. />
  7427. <productGroupable type="0"
  7428. />
  7429. </product>
  7430. <product id="5S"
  7431. name="5S"
  7432. series="5"
  7433. latestVersion="2.2.1"
  7434. show = "1" >
  7435. <productMenu id="protocol"
  7436. type="3" >
  7437. </productMenu>
  7438. <productMenu id="sip"
  7439. type="1" >
  7440. </productMenu>
  7441. <productMenu id="bluetoothIntercom"
  7442. type="1" >
  7443. </productMenu>
  7444. <productMenu id="phone"
  7445. type="1" >
  7446. </productMenu>
  7447. <productMenu id="fmradio"
  7448. type="0" >
  7449. </productMenu>
  7450. <productMenu id="deviceSetting"
  7451. type="1"
  7452. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7453. </productMenu>
  7454. <productMenu id="quickGuide"
  7455. type="0"
  7456. url=""
  7457. size="934KB" >
  7458. </productMenu>
  7459. <productMenu id="userGuide"
  7460. type="1"
  7461. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  7462. size="1.14MB" >
  7463. </productMenu>
  7464. <productMenu id="connectGuide"
  7465. type="1"
  7466. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  7467. size="1.12MB" >
  7468. </productMenu>
  7469. <productID id="5590"
  7470. />
  7471. <productGroupable type="0"
  7472. />
  7473. </product>
  7474. <product id="5S"
  7475. name="5S"
  7476. series="5"
  7477. latestVersion="1.2"
  7478. show = "-1" >
  7479. <productMenu id="protocol"
  7480. type="0">
  7481. </productMenu>
  7482. <productMenu id="sip"
  7483. type="1" >
  7484. </productMenu>
  7485. <productMenu id="bluetoothIntercom"
  7486. type="1" >
  7487. </productMenu>
  7488. <productMenu id="phone"
  7489. type="2" >
  7490. </productMenu>
  7491. <productMenu id="fmradio"
  7492. type="0" >
  7493. </productMenu>
  7494. <productMenu id="deviceSetting"
  7495. type="1"
  7496. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  7497. </productMenu>
  7498. <productMenu id="quickGuide"
  7499. type="0"
  7500. url=""
  7501. size="970KB" >
  7502. </productMenu>
  7503. <productMenu id="userGuide"
  7504. type="1"
  7505. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  7506. size="1.26MB" >
  7507. </productMenu>
  7508. <productID id="5534"
  7509. />
  7510. <productGroupable type="0"
  7511. />
  7512. </product>
  7513. <product id="5S"
  7514. name="5S"
  7515. series="5"
  7516. latestVersion="3.0.1"
  7517. show = "-1" >
  7518. <productMenu id="protocol"
  7519. type="0">
  7520. </productMenu>
  7521. <productMenu id="sip"
  7522. type="1" >
  7523. </productMenu>
  7524. <productMenu id="bluetoothIntercom"
  7525. type="1" >
  7526. </productMenu>
  7527. <productMenu id="phone"
  7528. type="2" >
  7529. </productMenu>
  7530. <productMenu id="fmradio"
  7531. type="0" >
  7532. </productMenu>
  7533. <productMenu id="deviceSetting"
  7534. type="1"
  7535. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  7536. </productMenu>
  7537. <productMenu id="quickGuide"
  7538. type="0"
  7539. url=""
  7540. size="970KB" >
  7541. </productMenu>
  7542. <productMenu id="userGuide"
  7543. type="1"
  7544. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  7545. size="1.26MB" >
  7546. </productMenu>
  7547. <productID id="5538"
  7548. />
  7549. <productGroupable type="0"
  7550. />
  7551. </product>
  7552. <product id="3SPLUS"
  7553. name="3S PLUS"
  7554. series="3"
  7555. latestVersion="2.2"
  7556. show = "1" >
  7557. <productMenu id="protocol"
  7558. type="3" >
  7559. </productMenu>
  7560. <productMenu id="sip"
  7561. type="1" >
  7562. </productMenu>
  7563. <productMenu id="bluetoothIntercom"
  7564. type="1" >
  7565. </productMenu>
  7566. <productMenu id="deviceSetting"
  7567. type="1"
  7568. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  7569. <productMenuURL version="2.2.1"
  7570. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  7571. />
  7572. </productMenu>
  7573. <productMenu id="quickGuide"
  7574. type="1"
  7575. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  7576. size="344KB" >
  7577. </productMenu>
  7578. <productMenu id="userGuide"
  7579. type="1"
  7580. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  7581. size="1.14MB" >
  7582. </productMenu>
  7583. <productMenu id="connectGuide"
  7584. type="1"
  7585. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  7586. size="1.12MB" >
  7587. </productMenu>
  7588. <productID id="4023"
  7589. />
  7590. <productGroupable type="0"
  7591. />
  7592. </product>
  7593. <product id="3SPLUS"
  7594. name="3S PLUS"
  7595. series="3"
  7596. latestVersion="1.1"
  7597. show = "-1" >
  7598. <productMenu id="protocol"
  7599. type="0">
  7600. </productMenu>
  7601. <productMenu id="sip"
  7602. type="1" >
  7603. </productMenu>
  7604. <productMenu id="bluetoothIntercom"
  7605. type="1" >
  7606. </productMenu>
  7607. <productMenu id="deviceSetting"
  7608. type="1"
  7609. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  7610. </productMenu>
  7611. <productMenu id="quickGuide"
  7612. type="1"
  7613. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  7614. size="842KB" >
  7615. </productMenu>
  7616. <productMenu id="userGuide"
  7617. type="1"
  7618. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  7619. size="1.02MB" >
  7620. </productMenu>
  7621. <productID id="6320"
  7622. />
  7623. <productGroupable type="0"
  7624. />
  7625. </product>
  7626. <product id="iCon"
  7627. name="iCon"
  7628. series="50"
  7629. latestVersion="1.0.1"
  7630. show = "0" >
  7631. <productMenu id="protocol"
  7632. type="2" >
  7633. </productMenu>
  7634. <productMenu id="alexa"
  7635. type="0" >
  7636. </productMenu>
  7637. <productMenu id="wa"
  7638. type="0" >
  7639. </productMenu>
  7640. <productMenu id="sip"
  7641. type="1" >
  7642. </productMenu>
  7643. <productMenu id="led"
  7644. type="3" >
  7645. </productMenu>
  7646. <productMenu id="meshIntercom"
  7647. type="20" >
  7648. </productMenu>
  7649. <productMenu id="meshIntercom+"
  7650. type="3"
  7651. url="0" >
  7652. <productMenuType version="1.0.9"
  7653. type="2"
  7654. />
  7655. </productMenu>
  7656. <productMenu id="bluetoothIntercom"
  7657. type="1" >
  7658. </productMenu>
  7659. <productMenu id="phone"
  7660. type="1" >
  7661. </productMenu>
  7662. <productMenu id="music"
  7663. type="1" >
  7664. </productMenu>
  7665. <productMenu id="fmradio"
  7666. type="1" >
  7667. </productMenu>
  7668. <productMenu id="deviceSetting"
  7669. type="1"
  7670. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  7671. <productMenuURL version="1.0.9"
  7672. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  7673. />
  7674. </productMenu>
  7675. <productMenu id="quickGuide"
  7676. type="1"
  7677. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  7678. size="344KB" >
  7679. </productMenu>
  7680. <productMenu id="userGuide"
  7681. type="1"
  7682. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.0.0_en_220830.pdf"
  7683. size="3.41MB" >
  7684. </productMenu>
  7685. <productMenu id="volume"
  7686. type="11" >
  7687. </productMenu>
  7688. <productMenu id="battery"
  7689. type="1" >
  7690. </productMenu>
  7691. <productID id="3900"
  7692. />
  7693. <productGroupable type="0"
  7694. />
  7695. </product>
  7696. <product id="HD50S"
  7697. name="H-D Audio 50S"
  7698. series="50"
  7699. latestVersion="1.0.1"
  7700. show = "-1" >
  7701. <productMenu id="protocol"
  7702. type="2" >
  7703. </productMenu>
  7704. <productMenu id="alexa"
  7705. type="0" >
  7706. </productMenu>
  7707. <productMenu id="ota"
  7708. type="0"
  7709. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  7710. size="1150234" >
  7711. </productMenu>
  7712. <productMenu id="wa"
  7713. type="1" >
  7714. </productMenu>
  7715. <productMenu id="sip"
  7716. type="1" >
  7717. </productMenu>
  7718. <productMenu id="meshIntercom"
  7719. type="20" >
  7720. </productMenu>
  7721. <productMenu id="bluetoothIntercom"
  7722. type="1" >
  7723. </productMenu>
  7724. <productMenu id="phone"
  7725. type="1" >
  7726. </productMenu>
  7727. <productMenu id="music"
  7728. type="1" >
  7729. </productMenu>
  7730. <productMenu id="fmradio"
  7731. type="1" >
  7732. </productMenu>
  7733. <productMenu id="deviceSetting"
  7734. type="1"
  7735. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  7736. </productMenu>
  7737. <productMenu id="quickGuide"
  7738. type="1"
  7739. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  7740. size="934KB" >
  7741. </productMenu>
  7742. <productMenu id="userGuide"
  7743. type="1"
  7744. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  7745. size="1.14MB" >
  7746. </productMenu>
  7747. <productMenu id="volume"
  7748. type="11" >
  7749. </productMenu>
  7750. <productMenu id="battery"
  7751. type="1" >
  7752. </productMenu>
  7753. <productID id="3156"
  7754. />
  7755. <productGroupable type="0"
  7756. />
  7757. </product>
  7758. <product id="HD50S"
  7759. name="H-D Audio 50S"
  7760. series="50"
  7761. latestVersion="2.0.2"
  7762. show = "0" >
  7763. <productMenu id="protocol"
  7764. type="2" >
  7765. </productMenu>
  7766. <productMenu id="alexa"
  7767. type="0" >
  7768. </productMenu>
  7769. <productMenu id="ota"
  7770. type="0"
  7771. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  7772. size="1150234" >
  7773. </productMenu>
  7774. <productMenu id="wa"
  7775. type="1" >
  7776. </productMenu>
  7777. <productMenu id="sip"
  7778. type="1" >
  7779. </productMenu>
  7780. <productMenu id="meshIntercom"
  7781. type="20" >
  7782. </productMenu>
  7783. <productMenu id="bluetoothIntercom"
  7784. type="1" >
  7785. </productMenu>
  7786. <productMenu id="phone"
  7787. type="1" >
  7788. </productMenu>
  7789. <productMenu id="music"
  7790. type="1" >
  7791. </productMenu>
  7792. <productMenu id="fmradio"
  7793. type="1" >
  7794. </productMenu>
  7795. <productMenu id="deviceSetting"
  7796. type="1"
  7797. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  7798. </productMenu>
  7799. <productMenu id="quickGuide"
  7800. type="1"
  7801. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  7802. size="934KB" >
  7803. </productMenu>
  7804. <productMenu id="userGuide"
  7805. type="1"
  7806. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  7807. size="1.14MB" >
  7808. </productMenu>
  7809. <productMenu id="volume"
  7810. type="11" >
  7811. </productMenu>
  7812. <productMenu id="battery"
  7813. type="1" >
  7814. </productMenu>
  7815. <productID id="3213"
  7816. />
  7817. <productGroupable type="0"
  7818. />
  7819. </product>
  7820. <product id="HD50C"
  7821. name="H-D Audio 50C"
  7822. series="50"
  7823. latestVersion="1.0.1"
  7824. show = "0" >
  7825. <productMenu id="protocol"
  7826. type="2" >
  7827. </productMenu>
  7828. <productMenu id="ota"
  7829. type="0" >
  7830. </productMenu>
  7831. <productMenu id="wa"
  7832. type="1" >
  7833. </productMenu>
  7834. <productMenu id="sip"
  7835. type="1" >
  7836. </productMenu>
  7837. <productMenu id="meshIntercom"
  7838. type="20" >
  7839. </productMenu>
  7840. <productMenu id="bluetoothIntercom"
  7841. type="1" >
  7842. </productMenu>
  7843. <productMenu id="phone"
  7844. type="1" >
  7845. </productMenu>
  7846. <productMenu id="music"
  7847. type="1" >
  7848. </productMenu>
  7849. <productMenu id="fmradio"
  7850. type="1" >
  7851. </productMenu>
  7852. <productMenu id="deviceSetting"
  7853. type="1"
  7854. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  7855. </productMenu>
  7856. <productMenu id="quickGuide"
  7857. type="1"
  7858. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  7859. size="344KB" >
  7860. </productMenu>
  7861. <productMenu id="userGuide"
  7862. type="1"
  7863. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  7864. size="3.41MB" >
  7865. </productMenu>
  7866. <productMenu id="volume"
  7867. type="11" >
  7868. </productMenu>
  7869. <productMenu id="battery"
  7870. type="1" >
  7871. </productMenu>
  7872. <productID id="3240"
  7873. />
  7874. <productGroupable type="0"
  7875. />
  7876. </product>
  7877. <product id="HD50S"
  7878. name="FURY N04"
  7879. series="Helmet"
  7880. latestVersion="1.0"
  7881. show = "0" >
  7882. <productMenu id="protocol"
  7883. type="2" >
  7884. </productMenu>
  7885. <productMenu id="alexa"
  7886. type="0" >
  7887. </productMenu>
  7888. <productMenu id="ota"
  7889. type="0" >
  7890. </productMenu>
  7891. <productMenu id="wa"
  7892. type="0" >
  7893. </productMenu>
  7894. <productMenu id="meshIntercom"
  7895. type="20" >
  7896. </productMenu>
  7897. <productMenu id="meshIntercom+"
  7898. type="3"
  7899. url="0" >
  7900. <productMenuType version="1.0.9"
  7901. type="2"
  7902. />
  7903. </productMenu>
  7904. <productMenu id="phone"
  7905. type="1" >
  7906. </productMenu>
  7907. <productMenu id="music"
  7908. type="1" >
  7909. </productMenu>
  7910. <productMenu id="fmradio"
  7911. type="1" >
  7912. </productMenu>
  7913. <productMenu id="deviceSetting"
  7914. type="1"
  7915. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  7916. <productMenuURL version="1.0.9"
  7917. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  7918. />
  7919. </productMenu>
  7920. <productMenu id="quickGuide"
  7921. type="1"
  7922. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  7923. size="1.12MB" >
  7924. </productMenu>
  7925. <productMenu id="userGuide"
  7926. type="1"
  7927. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  7928. size="2.0MB" >
  7929. </productMenu>
  7930. <productMenu id="volume"
  7931. type="13" >
  7932. </productMenu>
  7933. <productMenu id="battery"
  7934. type="1" >
  7935. </productMenu>
  7936. <productID id="5553"
  7937. />
  7938. <productGroupable type="0"
  7939. />
  7940. </product>
  7941. <product id="XCOM3Pro"
  7942. name="X-COM3 Pro"
  7943. series="50"
  7944. latestVersion="1.1"
  7945. show = "0" >
  7946. <productMenu id="protocol"
  7947. type="2" >
  7948. </productMenu>
  7949. <productMenu id="alexa"
  7950. type="0" >
  7951. </productMenu>
  7952. <productMenu id="ota"
  7953. type="0" >
  7954. </productMenu>
  7955. <productMenu id="wa"
  7956. type="0" >
  7957. </productMenu>
  7958. <productMenu id="sip"
  7959. type="1" >
  7960. </productMenu>
  7961. <productMenu id="meshIntercom"
  7962. type="30" >
  7963. </productMenu>
  7964. <productMenu id="meshIntercom+"
  7965. type="3"
  7966. url="2" >
  7967. <productMenuType version="1.1"
  7968. type="2"
  7969. />
  7970. </productMenu>
  7971. <productMenu id="waveIntercom"
  7972. type="1" >
  7973. <productMenuType version="1.1"
  7974. type="0"
  7975. />
  7976. </productMenu>
  7977. <productMenu id="bluetoothIntercom"
  7978. type="1" >
  7979. </productMenu>
  7980. <productMenu id="phone"
  7981. type="1" >
  7982. </productMenu>
  7983. <productMenu id="music"
  7984. type="1" >
  7985. </productMenu>
  7986. <productMenu id="fmradio"
  7987. type="1" >
  7988. </productMenu>
  7989. <productMenu id="deviceSetting"
  7990. type="1"
  7991. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  7992. <productMenuURL version="1.1"
  7993. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  7994. />
  7995. </productMenu>
  7996. <productMenu id="quickGuide"
  7997. type="0"
  7998. url=""
  7999. size="344KB" >
  8000. </productMenu>
  8001. <productMenu id="userGuide"
  8002. type="1"
  8003. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  8004. size="3.41MB" >
  8005. </productMenu>
  8006. <productMenu id="volume"
  8007. type="11" >
  8008. </productMenu>
  8009. <productMenu id="battery"
  8010. type="1" >
  8011. </productMenu>
  8012. <productID id="321A"
  8013. />
  8014. <productGroupable type="0"
  8015. />
  8016. </product>
  8017. <product id="XCOM3"
  8018. name="X-COM3"
  8019. series="20"
  8020. latestVersion="1.0"
  8021. show = "0" >
  8022. <productMenu id="protocol"
  8023. type="2" >
  8024. </productMenu>
  8025. <productMenu id="sip"
  8026. type="1" >
  8027. </productMenu>
  8028. <productMenu id="bluetoothIntercom"
  8029. type="1" >
  8030. </productMenu>
  8031. <productMenu id="phone"
  8032. type="1" >
  8033. </productMenu>
  8034. <productMenu id="music"
  8035. type="1" >
  8036. </productMenu>
  8037. <productMenu id="fmradio"
  8038. type="1" >
  8039. </productMenu>
  8040. <productMenu id="deviceSetting"
  8041. type="1"
  8042. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  8043. </productMenu>
  8044. <productMenu id="quickGuide"
  8045. type="0"
  8046. url=""
  8047. size="934KB" >
  8048. </productMenu>
  8049. <productMenu id="userGuide"
  8050. type="1"
  8051. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  8052. size="1.14MB" >
  8053. </productMenu>
  8054. <productMenu id="volume"
  8055. type="15" >
  8056. </productMenu>
  8057. <productID id="3410"
  8058. />
  8059. <productGroupable type="0"
  8060. />
  8061. </product>
  8062. <product id="X-COM2"
  8063. name="X-COM2"
  8064. series="20"
  8065. latestVersion="1.0.5"
  8066. show = "0" >
  8067. <productMenu id="protocol"
  8068. type="0">
  8069. </productMenu>
  8070. <productMenu id="sip"
  8071. type="1" >
  8072. </productMenu>
  8073. <productMenu id="bluetoothIntercom"
  8074. type="1" >
  8075. </productMenu>
  8076. <productMenu id="intercomSetting"
  8077. type="1" >
  8078. </productMenu>
  8079. <productMenu id="phone"
  8080. type="2" >
  8081. </productMenu>
  8082. <productMenu id="fmradio"
  8083. type="3" >
  8084. </productMenu>
  8085. <productMenu id="deviceSetting"
  8086. type="1"
  8087. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  8088. </productMenu>
  8089. <productMenu id="quickGuide"
  8090. type="1"
  8091. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  8092. size="796KB" >
  8093. </productMenu>
  8094. <productMenu id="userGuide"
  8095. type="1"
  8096. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  8097. size="1.90MB" >
  8098. </productMenu>
  8099. <productID id="2030"
  8100. />
  8101. <productGroupable type="1"
  8102. />
  8103. </product>
  8104. <product id="AVAABC"
  8105. name="AVA ABC"
  8106. series="SPIDER"
  8107. latestVersion="1.0"
  8108. show = "0" >
  8109. <productMenu id="protocol"
  8110. type="2" >
  8111. </productMenu>
  8112. <productMenu id="alexa"
  8113. type="0" >
  8114. </productMenu>
  8115. <productMenu id="ota"
  8116. type="0" >
  8117. </productMenu>
  8118. <productMenu id="wa"
  8119. type="0" >
  8120. </productMenu>
  8121. <productMenu id="meshIntercom"
  8122. type="20" >
  8123. </productMenu>
  8124. <productMenu id="phone"
  8125. type="1" >
  8126. </productMenu>
  8127. <productMenu id="music"
  8128. type="1" >
  8129. </productMenu>
  8130. <productMenu id="musicSharing"
  8131. type="0" >
  8132. </productMenu>
  8133. <productMenu id="deviceSetting"
  8134. type="1"
  8135. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  8136. </productMenu>
  8137. <productMenu id="quickGuide"
  8138. type="1"
  8139. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  8140. size="1.12MB" >
  8141. </productMenu>
  8142. <productMenu id="userGuide"
  8143. type="1"
  8144. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  8145. size="2.0MB" >
  8146. </productMenu>
  8147. <productMenu id="volume"
  8148. type="12" >
  8149. </productMenu>
  8150. <productMenu id="battery"
  8151. type="1" >
  8152. </productMenu>
  8153. <productID id="6808"
  8154. />
  8155. <productGroupable type="0"
  8156. />
  8157. </product>
  8158. <product id="ADVANCEPROCOMMP"
  8159. name="ADVANCE PROCOM MP"
  8160. series="Helmet"
  8161. latestVersion="1.1.4"
  8162. latestVersionVoicePrompt="1.0"
  8163. show = "-1" >
  8164. <productMenu id="protocol"
  8165. type="2" >
  8166. </productMenu>
  8167. <productMenu id="ota"
  8168. type="0" >
  8169. <otaLanguages>
  8170. <otaLanguage
  8171. id="0"
  8172. name="English"
  8173. package="0"
  8174. />
  8175. <otaLanguage
  8176. id="0"
  8177. name="French"
  8178. package="1"
  8179. />
  8180. <otaLanguage
  8181. id="0"
  8182. name="Spanish"
  8183. package="2"
  8184. />
  8185. <otaLanguage
  8186. id="0"
  8187. name="Italian"
  8188. package="3"
  8189. />
  8190. <otaLanguage
  8191. id="0"
  8192. name="German"
  8193. package="4"
  8194. />
  8195. <otaLanguage
  8196. id="0"
  8197. name="Dutch"
  8198. package="5"
  8199. />
  8200. <otaLanguage
  8201. id="0"
  8202. name="Russian"
  8203. package="6"
  8204. />
  8205. <otaLanguage
  8206. id="0"
  8207. name="Chinese"
  8208. package="7"
  8209. />
  8210. <otaLanguage
  8211. id="0"
  8212. name="Korean"
  8213. package="8"
  8214. />
  8215. <otaLanguage
  8216. id="0"
  8217. name="Japanese"
  8218. package="9"
  8219. />
  8220. <otaLanguage
  8221. id="0"
  8222. name="Finnish"
  8223. package="10"
  8224. />
  8225. <otaLanguage
  8226. id="0"
  8227. name="Polish"
  8228. package="11"
  8229. />
  8230. </otaLanguages>
  8231. <otaPackages>
  8232. <package
  8233. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0.img"
  8234. size="5183988"
  8235. />
  8236. <package
  8237. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-fr-FR.img"
  8238. size="5183988"
  8239. />
  8240. <package
  8241. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-es-ES.img"
  8242. size="5183988"
  8243. />
  8244. <package
  8245. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-it-IT.img"
  8246. size="5183988"
  8247. />
  8248. <package
  8249. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-de-DE.img"
  8250. size="5183988"
  8251. />
  8252. <package
  8253. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-nl-NL.img"
  8254. size="5183988"
  8255. />
  8256. <package
  8257. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-ru-RU.img"
  8258. size="5183988"
  8259. />
  8260. <package
  8261. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-cmn-CN.img"
  8262. size="5183988"
  8263. />
  8264. <package
  8265. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-ko-KR.img"
  8266. size="5183988"
  8267. />
  8268. <package
  8269. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-ja-JP.img"
  8270. size="5183988"
  8271. />
  8272. <package
  8273. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-fi-FI.img"
  8274. size="5183988"
  8275. />
  8276. <package
  8277. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-pl-PL.img"
  8278. size="5183988"
  8279. />
  8280. </otaPackages>
  8281. </productMenu>
  8282. <productMenu id="wa"
  8283. type="0" >
  8284. </productMenu>
  8285. <productMenu id="meshIntercom"
  8286. type="30" >
  8287. </productMenu>
  8288. <productMenu id="meshIntercom+"
  8289. type="3"
  8290. url="2" >
  8291. </productMenu>
  8292. <productMenu id="waveIntercom"
  8293. type="1" >
  8294. </productMenu>
  8295. <productMenu id="fmradio"
  8296. type="1" >
  8297. </productMenu>
  8298. <productMenu id="phone"
  8299. type="0" >
  8300. </productMenu>
  8301. <productMenu id="music"
  8302. type="1" >
  8303. </productMenu>
  8304. <productMenu id="musicSharing"
  8305. type="0" >
  8306. </productMenu>
  8307. <productMenu id="deviceSetting"
  8308. type="1"
  8309. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  8310. </productMenu>
  8311. <productMenu id="quickGuide"
  8312. type="0"
  8313. url=""
  8314. size="1.12MB" >
  8315. </productMenu>
  8316. <productMenu id="userGuide"
  8317. type="1"
  8318. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  8319. size="2.0MB" >
  8320. </productMenu>
  8321. <productMenu id="videoGuide"
  8322. type="0"
  8323. url=""
  8324. size="3.41MB" >
  8325. </productMenu>
  8326. <productMenu id="connectGuide"
  8327. type="1"
  8328. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  8329. size="1.12MB" >
  8330. </productMenu>
  8331. <productMenu id="volume"
  8332. type="16" >
  8333. </productMenu>
  8334. <productMenu id="battery"
  8335. type="1" >
  8336. </productMenu>
  8337. <productID id="6A85"
  8338. />
  8339. <productGroupable type="0"
  8340. />
  8341. </product>
  8342. <product id="Triumph_50S"
  8343. name="Triumph 50S"
  8344. series="50"
  8345. latestVersion="1.5"
  8346. show = "0" >
  8347. <productMenu id="protocol"
  8348. type="2" >
  8349. </productMenu>
  8350. <productMenu id="alexa"
  8351. type="0" >
  8352. </productMenu>
  8353. <productMenu id="ota"
  8354. type="0"
  8355. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  8356. size="1150234" >
  8357. </productMenu>
  8358. <productMenu id="wa"
  8359. type="1" >
  8360. </productMenu>
  8361. <productMenu id="sip"
  8362. type="1" >
  8363. </productMenu>
  8364. <productMenu id="meshIntercom"
  8365. type="20" >
  8366. </productMenu>
  8367. <productMenu id="bluetoothIntercom"
  8368. type="1" >
  8369. </productMenu>
  8370. <productMenu id="meshIntercom+"
  8371. type="3"
  8372. url="2" >
  8373. <productMenuType version="1.2.9"
  8374. type="2"
  8375. />
  8376. <productMenuURL version="1.2.9"
  8377. url="0"
  8378. />
  8379. </productMenu>
  8380. <productMenu id="waveIntercom"
  8381. type="1" >
  8382. <productMenuType version="1.2.9"
  8383. type="0"
  8384. />
  8385. </productMenu>
  8386. <productMenu id="phone"
  8387. type="1" >
  8388. </productMenu>
  8389. <productMenu id="music"
  8390. type="1" >
  8391. </productMenu>
  8392. <productMenu id="fmradio"
  8393. type="1" >
  8394. </productMenu>
  8395. <productMenu id="deviceSetting"
  8396. type="1"
  8397. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  8398. <productMenuURL version="1.2.9"
  8399. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  8400. />
  8401. <productMenuURL version="1.0"
  8402. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  8403. />
  8404. </productMenu>
  8405. <productMenu id="quickGuide"
  8406. type="1"
  8407. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  8408. size="934KB" >
  8409. </productMenu>
  8410. <productMenu id="userGuide"
  8411. type="1"
  8412. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  8413. size="1.14MB" >
  8414. </productMenu>
  8415. <productMenu id="volume"
  8416. type="11" >
  8417. </productMenu>
  8418. <productMenu id="battery"
  8419. type="1" >
  8420. </productMenu>
  8421. <productID id="3264"
  8422. />
  8423. <productGroupable type="0"
  8424. />
  8425. </product>
  8426. <product id="RE50S"
  8427. name="RE 50S"
  8428. series="50"
  8429. latestVersion="2.7"
  8430. show = "0" >
  8431. <productMenu id="protocol"
  8432. type="2" >
  8433. </productMenu>
  8434. <productMenu id="alexa"
  8435. type="0" >
  8436. </productMenu>
  8437. <productMenu id="ota"
  8438. type="0"
  8439. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  8440. size="1150234" >
  8441. </productMenu>
  8442. <productMenu id="wa"
  8443. type="1" >
  8444. </productMenu>
  8445. <productMenu id="sip"
  8446. type="1" >
  8447. </productMenu>
  8448. <productMenu id="meshIntercom"
  8449. type="30" >
  8450. </productMenu>
  8451. <productMenu id="meshIntercom+"
  8452. type="3"
  8453. url="2" >
  8454. <productMenuType version="2.5"
  8455. type="2"
  8456. />
  8457. </productMenu>
  8458. <productMenu id="waveIntercom"
  8459. type="1" >
  8460. <productMenuType version="2.5"
  8461. type="0"
  8462. />
  8463. </productMenu>
  8464. <productMenu id="bluetoothIntercom"
  8465. type="1" >
  8466. </productMenu>
  8467. <productMenu id="phone"
  8468. type="1" >
  8469. </productMenu>
  8470. <productMenu id="music"
  8471. type="1" >
  8472. </productMenu>
  8473. <productMenu id="fmradio"
  8474. type="1" >
  8475. </productMenu>
  8476. <productMenu id="deviceSetting"
  8477. type="1"
  8478. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  8479. <productMenuURL version="2.5"
  8480. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  8481. />
  8482. </productMenu>
  8483. <productMenu id="quickGuide"
  8484. type="1"
  8485. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  8486. size="934KB" >
  8487. </productMenu>
  8488. <productMenu id="userGuide"
  8489. type="1"
  8490. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  8491. size="1.14MB" >
  8492. </productMenu>
  8493. <productMenu id="videoGuide"
  8494. type="0"
  8495. url=""
  8496. size="3.41MB" >
  8497. </productMenu>
  8498. <productMenu id="volume"
  8499. type="11" >
  8500. </productMenu>
  8501. <productMenu id="battery"
  8502. type="1" >
  8503. </productMenu>
  8504. <productID id="321C"
  8505. />
  8506. <productGroupable type="0"
  8507. />
  8508. </product>
  8509. <product id="BMW_HELMET_II_U1"
  8510. name="BMW HELMET II U1"
  8511. series="50"
  8512. latestVersion="1.0"
  8513. show = "0" >
  8514. <productMenu id="protocol"
  8515. type="2" >
  8516. </productMenu>
  8517. <productMenu id="alexa"
  8518. type="0" >
  8519. </productMenu>
  8520. <productMenu id="sip"
  8521. type="1" >
  8522. </productMenu>
  8523. <productMenu id="meshIntercom"
  8524. type="20" >
  8525. </productMenu>
  8526. <productMenu id="bluetoothIntercom"
  8527. type="1" >
  8528. </productMenu>
  8529. <productMenu id="bluetoothIntercom2"
  8530. type="1" >
  8531. </productMenu>
  8532. <productMenu id="phone"
  8533. type="1" >
  8534. </productMenu>
  8535. <productMenu id="music"
  8536. type="1" >
  8537. </productMenu>
  8538. <productMenu id="fmradio"
  8539. type="1" >
  8540. </productMenu>
  8541. <productMenu id="deviceSetting"
  8542. type="1"
  8543. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  8544. </productMenu>
  8545. <productMenu id="quickGuide"
  8546. type="1"
  8547. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  8548. size="934KB" >
  8549. </productMenu>
  8550. <productMenu id="userGuide"
  8551. type="1"
  8552. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  8553. size="1.14MB" >
  8554. </productMenu>
  8555. <productMenu id="volume"
  8556. type="11" >
  8557. </productMenu>
  8558. <productMenu id="battery"
  8559. type="1" >
  8560. </productMenu>
  8561. <productID id="3260"
  8562. />
  8563. <productGroupable type="0"
  8564. />
  8565. </product>
  8566. <product id="OUTRUSHR"
  8567. name="CX935"
  8568. series="Helmet"
  8569. latestVersion="1.1.3"
  8570. show = "-1" >
  8571. <productMenu id="protocol"
  8572. type="0">
  8573. </productMenu>
  8574. <productMenu id="sip"
  8575. type="1" >
  8576. </productMenu>
  8577. <productMenu id="bluetoothIntercom"
  8578. type="1" >
  8579. </productMenu>
  8580. <productMenu id="phone"
  8581. type="2" >
  8582. </productMenu>
  8583. <productMenu id="fmradio"
  8584. type="3" >
  8585. </productMenu>
  8586. <productMenu id="deviceSetting"
  8587. type="1"
  8588. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  8589. </productMenu>
  8590. <productMenu id="userGuide"
  8591. type="1"
  8592. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  8593. size="660KB" >
  8594. </productMenu>
  8595. <productID id="5436"
  8596. />
  8597. <productGroupable type="0"
  8598. />
  8599. </product>
  8600. <product id="LSE_01"
  8601. name="LSE-01"
  8602. series="SF"
  8603. latestVersion="1.2.3"
  8604. show = "0" >
  8605. <productMenu id="protocol"
  8606. type="1"
  8607. url="3">
  8608. </productMenu>
  8609. <productMenu id="sip"
  8610. type="1" >
  8611. </productMenu>
  8612. <productMenu id="bluetoothIntercom"
  8613. type="1" >
  8614. </productMenu>
  8615. <productMenu id="phone"
  8616. type="1" >
  8617. </productMenu>
  8618. <productMenu id="music"
  8619. type="1" >
  8620. </productMenu>
  8621. <productMenu id="fmradio"
  8622. type="1" >
  8623. </productMenu>
  8624. <productMenu id="deviceSetting"
  8625. type="1"
  8626. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8627. <productMenuURL version="1.1"
  8628. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8629. />
  8630. <productMenuURL version="1.0"
  8631. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  8632. />
  8633. </productMenu>
  8634. <productMenu id="quickGuide"
  8635. type="1"
  8636. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  8637. size="607KB" >
  8638. </productMenu>
  8639. <productMenu id="userGuide"
  8640. type="1"
  8641. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  8642. size="1.91MB" >
  8643. </productMenu>
  8644. <productMenu id="volume"
  8645. type="4" >
  8646. </productMenu>
  8647. <productID id="5416"
  8648. />
  8649. <productGroupable type="0"
  8650. />
  8651. </product>
  8652. <product id="AGV_ARK"
  8653. name="AGV ARK"
  8654. series="SF"
  8655. latestVersion="1.0.3"
  8656. show = "0" >
  8657. <productMenu id="protocol"
  8658. type="1"
  8659. url="3">
  8660. </productMenu>
  8661. <productMenu id="sip"
  8662. type="1" >
  8663. </productMenu>
  8664. <productMenu id="bluetoothIntercom"
  8665. type="1" >
  8666. </productMenu>
  8667. <productMenu id="phone"
  8668. type="1" >
  8669. </productMenu>
  8670. <productMenu id="music"
  8671. type="1" >
  8672. </productMenu>
  8673. <productMenu id="fmradio"
  8674. type="1" >
  8675. </productMenu>
  8676. <productMenu id="deviceSetting"
  8677. type="1"
  8678. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8679. </productMenu>
  8680. <productMenu id="quickGuide"
  8681. type="1"
  8682. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  8683. size="607KB" >
  8684. </productMenu>
  8685. <productMenu id="userGuide"
  8686. type="1"
  8687. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  8688. size="1.91MB" >
  8689. </productMenu>
  8690. <productMenu id="volume"
  8691. type="4" >
  8692. </productMenu>
  8693. <productID id="5420"
  8694. />
  8695. <productGroupable type="0"
  8696. />
  8697. </product>
  8698. <product id="KLIM_KRIOS"
  8699. name="KLIM Krios"
  8700. series="10"
  8701. latestVersion="1.1.2"
  8702. show = "0" >
  8703. <productMenu id="protocol"
  8704. type="0">
  8705. </productMenu>
  8706. <productMenu id="sip"
  8707. type="1" >
  8708. </productMenu>
  8709. <productMenu id="bluetoothIntercom"
  8710. type="1" >
  8711. </productMenu>
  8712. <productMenu id="phone"
  8713. type="2" >
  8714. </productMenu>
  8715. <productMenu id="fmradio"
  8716. type="3" >
  8717. </productMenu>
  8718. <productMenu id="deviceSetting"
  8719. type="1"
  8720. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  8721. <productMenuURL version="1.0"
  8722. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  8723. />
  8724. </productMenu>
  8725. <productMenu id="quickGuide"
  8726. type="1"
  8727. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  8728. size="649KB" >
  8729. </productMenu>
  8730. <productMenu id="userGuide"
  8731. type="1"
  8732. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  8733. size="1.43MB" >
  8734. </productMenu>
  8735. <productID id="5910"
  8736. />
  8737. <productGroupable type="0"
  8738. />
  8739. </product>
  8740. <product id="POLARIS_SLINGSHOT"
  8741. name="Polaris Slingshot"
  8742. series="10"
  8743. latestVersion="1.1.2"
  8744. show = "0" >
  8745. <productMenu id="protocol"
  8746. type="0">
  8747. </productMenu>
  8748. <productMenu id="sip"
  8749. type="1" >
  8750. </productMenu>
  8751. <productMenu id="bluetoothIntercom"
  8752. type="1" >
  8753. </productMenu>
  8754. <productMenu id="phone"
  8755. type="2" >
  8756. </productMenu>
  8757. <productMenu id="fmradio"
  8758. type="3" >
  8759. </productMenu>
  8760. <productMenu id="deviceSetting"
  8761. type="1"
  8762. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  8763. <productMenuURL version="1.0"
  8764. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  8765. />
  8766. </productMenu>
  8767. <productMenu id="quickGuide"
  8768. type="1"
  8769. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  8770. size="689KB" >
  8771. </productMenu>
  8772. <productMenu id="userGuide"
  8773. type="1"
  8774. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  8775. size="1.43MB" >
  8776. </productMenu>
  8777. <productID id="5920"
  8778. />
  8779. <productGroupable type="0"
  8780. />
  8781. </product>
  8782. <product id="DWO6"
  8783. name="SEDICI DWO6-PRO"
  8784. series="10"
  8785. latestVersion="1.0.2"
  8786. show = "0" >
  8787. <productMenu id="protocol"
  8788. type="0">
  8789. </productMenu>
  8790. <productMenu id="sip"
  8791. type="1" >
  8792. </productMenu>
  8793. <productMenu id="bluetoothIntercom"
  8794. type="1" >
  8795. </productMenu>
  8796. <productMenu id="phone"
  8797. type="2" >
  8798. </productMenu>
  8799. <productMenu id="fmradio"
  8800. type="3" >
  8801. </productMenu>
  8802. <productMenu id="deviceSetting"
  8803. type="1"
  8804. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  8805. </productMenu>
  8806. <productMenu id="quickGuide"
  8807. type="1"
  8808. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  8809. size="529KB" >
  8810. </productMenu>
  8811. <productMenu id="userGuide"
  8812. type="1"
  8813. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  8814. size="4.09MB" >
  8815. </productMenu>
  8816. <productID id="6112"
  8817. />
  8818. <productGroupable type="0"
  8819. />
  8820. </product>
  8821. <product id="DWO6A"
  8822. name="SEDICI DWO-6"
  8823. series="10"
  8824. latestVersion="1.0.2"
  8825. show = "0" >
  8826. <productMenu id="protocol"
  8827. type="0">
  8828. </productMenu>
  8829. <productMenu id="sip"
  8830. type="1" >
  8831. </productMenu>
  8832. <productMenu id="bluetoothIntercom"
  8833. type="1" >
  8834. </productMenu>
  8835. <productMenu id="phone"
  8836. type="2" >
  8837. </productMenu>
  8838. <productMenu id="fmradio"
  8839. type="3" >
  8840. </productMenu>
  8841. <productMenu id="deviceSetting"
  8842. type="1"
  8843. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  8844. </productMenu>
  8845. <productMenu id="quickGuide"
  8846. type="1"
  8847. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  8848. size="522KB" >
  8849. </productMenu>
  8850. <productMenu id="userGuide"
  8851. type="1"
  8852. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  8853. size="2.71MB" >
  8854. </productMenu>
  8855. <productID id="6114"
  8856. />
  8857. <productGroupable type="0"
  8858. />
  8859. </product>
  8860. <product id="3SPLUS"
  8861. name="ZILL"
  8862. series="3"
  8863. latestVersion="1.0.4"
  8864. show = "0" >
  8865. <productMenu id="protocol"
  8866. type="0">
  8867. </productMenu>
  8868. <productMenu id="sip"
  8869. type="1" >
  8870. </productMenu>
  8871. <productMenu id="bluetoothIntercom"
  8872. type="1" >
  8873. </productMenu>
  8874. <productMenu id="deviceSetting"
  8875. type="1"
  8876. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  8877. </productMenu>
  8878. <productMenu id="quickGuide"
  8879. type="1"
  8880. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  8881. size="842KB" >
  8882. </productMenu>
  8883. <productMenu id="userGuide"
  8884. type="1"
  8885. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  8886. size="1.02MB" >
  8887. </productMenu>
  8888. <productID id="6335"
  8889. />
  8890. <productGroupable type="0"
  8891. />
  8892. </product>
  8893. <product id="HD50S"
  8894. name="Boom! Audio 30K"
  8895. series="30"
  8896. latestVersion="3.4"
  8897. show = "0" >
  8898. <productMenu id="protocol"
  8899. type="1"
  8900. url="0">
  8901. </productMenu>
  8902. <productMenu id="wa"
  8903. type="0" >
  8904. </productMenu>
  8905. <productMenu id="sip"
  8906. type="1" >
  8907. </productMenu>
  8908. <productMenu id="meshIntercom"
  8909. type="20" >
  8910. <productMenuType version="2.9.9"
  8911. type="10"
  8912. />
  8913. </productMenu>
  8914. <productMenu id="bluetoothIntercom"
  8915. type="1" >
  8916. </productMenu>
  8917. <productMenu id="phone"
  8918. type="1" >
  8919. </productMenu>
  8920. <productMenu id="music"
  8921. type="1" >
  8922. </productMenu>
  8923. <productMenu id="fmradio"
  8924. type="1" >
  8925. </productMenu>
  8926. <productMenu id="deviceSetting"
  8927. type="1"
  8928. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  8929. <productMenuURL version="3.2"
  8930. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  8931. />
  8932. <productMenuURL version="3.0"
  8933. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  8934. />
  8935. <productMenuURL version="2.2"
  8936. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  8937. />
  8938. </productMenu>
  8939. <productMenu id="quickGuide"
  8940. type="1"
  8941. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  8942. size="1.06MB" >
  8943. </productMenu>
  8944. <productMenu id="userGuide"
  8945. type="1"
  8946. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  8947. size="3.15MB" >
  8948. </productMenu>
  8949. <productMenu id="volume"
  8950. type="1" >
  8951. </productMenu>
  8952. <productID id="3112"
  8953. />
  8954. <productGroupable type="0"
  8955. />
  8956. </product>
  8957. <product id="HD50S"
  8958. name="Boom! Audio N02"
  8959. series="30"
  8960. latestVersion="3.1"
  8961. show = "0" >
  8962. <productMenu id="protocol"
  8963. type="1"
  8964. url="0">
  8965. </productMenu>
  8966. <productMenu id="wa"
  8967. type="2" >
  8968. </productMenu>
  8969. <productMenu id="sip"
  8970. type="1" >
  8971. </productMenu>
  8972. <productMenu id="meshIntercom"
  8973. type="20" >
  8974. <productMenuType version="2.9.9"
  8975. type="10"
  8976. />
  8977. </productMenu>
  8978. <productMenu id="bluetoothIntercom"
  8979. type="1" >
  8980. </productMenu>
  8981. <productMenu id="phone"
  8982. type="1" >
  8983. </productMenu>
  8984. <productMenu id="music"
  8985. type="1" >
  8986. </productMenu>
  8987. <productMenu id="fmradio"
  8988. type="1" >
  8989. </productMenu>
  8990. <productMenu id="deviceSetting"
  8991. type="1"
  8992. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  8993. <productMenuURL version="2.2"
  8994. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  8995. />
  8996. </productMenu>
  8997. <productMenu id="quickGuide"
  8998. type="1"
  8999. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  9000. size="1.06MB" >
  9001. </productMenu>
  9002. <productMenu id="userGuide"
  9003. type="1"
  9004. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  9005. size="3.15MB" >
  9006. </productMenu>
  9007. <productMenu id="volume"
  9008. type="2" >
  9009. </productMenu>
  9010. <productID id="3114"
  9011. />
  9012. <productGroupable type="0"
  9013. />
  9014. </product>
  9015. <product id="HD50S"
  9016. name="Boom Audio 20S"
  9017. series="50"
  9018. latestVersion="2.5.2"
  9019. show = "0" >
  9020. <productMenu id="protocol"
  9021. type="0">
  9022. </productMenu>
  9023. <productMenu id="sip"
  9024. type="1" >
  9025. <productMenuType version="1.0"
  9026. type="0"
  9027. />
  9028. </productMenu>
  9029. <productMenu id="bluetoothIntercom"
  9030. type="1" >
  9031. <productMenuType version="1.0"
  9032. type="0"
  9033. />
  9034. </productMenu>
  9035. <productMenu id="intercomSetting"
  9036. type="1" >
  9037. </productMenu>
  9038. <productMenu id="phone"
  9039. type="2" >
  9040. </productMenu>
  9041. <productMenu id="fmradio"
  9042. type="3" >
  9043. </productMenu>
  9044. <productMenu id="deviceSetting"
  9045. type="1"
  9046. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  9047. <productMenuURL version="2.4"
  9048. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9049. />
  9050. <productMenuURL version="1.5"
  9051. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9052. />
  9053. <productMenuURL version="1.4.1"
  9054. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9055. />
  9056. <productMenuURL version="1.1"
  9057. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9058. />
  9059. <productMenuURL version="1.0"
  9060. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9061. />
  9062. </productMenu>
  9063. <productMenu id="quickGuide"
  9064. type="1"
  9065. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  9066. size="264KB" >
  9067. </productMenu>
  9068. <productMenu id="userGuide"
  9069. type="1"
  9070. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  9071. size="3.09MB" >
  9072. </productMenu>
  9073. <productMenu id="connectGuide"
  9074. type="1"
  9075. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9076. size="1.12MB" >
  9077. </productMenu>
  9078. <productID id="4210"
  9079. />
  9080. <productProductKey key="11"
  9081. />
  9082. <productID id="4230"
  9083. />
  9084. <productProductKey key="11"
  9085. />
  9086. <productGroupable type="1"
  9087. />
  9088. </product>
  9089. <product id="HD50S"
  9090. name="Boom Audio 20S EVO"
  9091. series="50"
  9092. latestVersion="2.5.2"
  9093. show = "0" >
  9094. <productMenu id="protocol"
  9095. type="0">
  9096. </productMenu>
  9097. <productMenu id="sip"
  9098. type="1" >
  9099. <productMenuType version="1.0"
  9100. type="0"
  9101. />
  9102. </productMenu>
  9103. <productMenu id="bluetoothIntercom"
  9104. type="1" >
  9105. <productMenuType version="1.0"
  9106. type="0"
  9107. />
  9108. </productMenu>
  9109. <productMenu id="intercomSetting"
  9110. type="1" >
  9111. </productMenu>
  9112. <productMenu id="phone"
  9113. type="2" >
  9114. </productMenu>
  9115. <productMenu id="fmradio"
  9116. type="3" >
  9117. </productMenu>
  9118. <productMenu id="deviceSetting"
  9119. type="1"
  9120. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  9121. <productMenuURL version="2.4"
  9122. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9123. />
  9124. <productMenuURL version="1.5"
  9125. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9126. />
  9127. <productMenuURL version="1.4.1"
  9128. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9129. />
  9130. <productMenuURL version="1.1"
  9131. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9132. />
  9133. <productMenuURL version="1.0"
  9134. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9135. />
  9136. </productMenu>
  9137. <productMenu id="quickGuide"
  9138. type="1"
  9139. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  9140. size="321KB" >
  9141. </productMenu>
  9142. <productMenu id="userGuide"
  9143. type="1"
  9144. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  9145. size="2.46MB" >
  9146. </productMenu>
  9147. <productID id="4230"
  9148. />
  9149. <productProductKey key="27"
  9150. />
  9151. <productGroupable type="1"
  9152. />
  9153. </product>
  9154. <product id="HD50S"
  9155. name="Boom! Audio 10S"
  9156. series="50"
  9157. latestVersion="1.1.3"
  9158. show = "0" >
  9159. <productMenu id="protocol"
  9160. type="0">
  9161. </productMenu>
  9162. <productMenu id="sip"
  9163. type="1" >
  9164. </productMenu>
  9165. <productMenu id="bluetoothIntercom"
  9166. type="1" >
  9167. </productMenu>
  9168. <productMenu id="phone"
  9169. type="2" >
  9170. </productMenu>
  9171. <productMenu id="fmradio"
  9172. type="3" >
  9173. </productMenu>
  9174. <productMenu id="deviceSetting"
  9175. type="1"
  9176. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  9177. </productMenu>
  9178. <productMenu id="quickGuide"
  9179. type="1"
  9180. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  9181. size="538KB" >
  9182. </productMenu>
  9183. <productMenu id="userGuide"
  9184. type="1"
  9185. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  9186. size="1.55MB" >
  9187. </productMenu>
  9188. <productID id="5532"
  9189. />
  9190. <productGroupable type="0"
  9191. />
  9192. </product>
  9193. <product id="HD50S"
  9194. name="Boom! Audio N01 10R"
  9195. series="50"
  9196. latestVersion="1.1.3"
  9197. show = "0" >
  9198. <productMenu id="protocol"
  9199. type="0">
  9200. </productMenu>
  9201. <productMenu id="sip"
  9202. type="1" >
  9203. </productMenu>
  9204. <productMenu id="bluetoothIntercom"
  9205. type="1" >
  9206. </productMenu>
  9207. <productMenu id="phone"
  9208. type="2" >
  9209. </productMenu>
  9210. <productMenu id="fmradio"
  9211. type="3" >
  9212. </productMenu>
  9213. <productMenu id="deviceSetting"
  9214. type="1"
  9215. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  9216. </productMenu>
  9217. <productMenu id="quickGuide"
  9218. type="1"
  9219. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  9220. size="766KB" >
  9221. </productMenu>
  9222. <productMenu id="userGuide"
  9223. type="1"
  9224. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  9225. size="1.45MB" >
  9226. </productMenu>
  9227. <productID id="5522"
  9228. />
  9229. <productGroupable type="0"
  9230. />
  9231. </product>
  9232. <product id="HD50S"
  9233. name="OUTRUSH-R N03"
  9234. series="50"
  9235. latestVersion="1.2.1"
  9236. show = "-1" >
  9237. <productMenu id="protocol"
  9238. type="0">
  9239. </productMenu>
  9240. <productMenu id="sip"
  9241. type="1" >
  9242. </productMenu>
  9243. <productMenu id="bluetoothIntercom"
  9244. type="1" >
  9245. </productMenu>
  9246. <productMenu id="phone"
  9247. type="2" >
  9248. </productMenu>
  9249. <productMenu id="fmradio"
  9250. type="3" >
  9251. </productMenu>
  9252. <productMenu id="deviceSetting"
  9253. type="1"
  9254. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  9255. </productMenu>
  9256. <productMenu id="userGuide"
  9257. type="1"
  9258. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  9259. size="660KB" >
  9260. </productMenu>
  9261. <productID id="5434"
  9262. />
  9263. <productGroupable type="0"
  9264. />
  9265. </product>
  9266. <product id="HD50S"
  9267. name="OUTRUSH-R N03"
  9268. series="50"
  9269. latestVersion="2.0"
  9270. show = "0" >
  9271. <productMenu id="protocol"
  9272. type="3" >
  9273. </productMenu>
  9274. <productMenu id="sip"
  9275. type="1" >
  9276. </productMenu>
  9277. <productMenu id="bluetoothIntercom"
  9278. type="1" >
  9279. </productMenu>
  9280. <productMenu id="phone"
  9281. type="1" >
  9282. </productMenu>
  9283. <productMenu id="fmradio"
  9284. type="1" >
  9285. </productMenu>
  9286. <productMenu id="deviceSetting"
  9287. type="1"
  9288. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  9289. </productMenu>
  9290. <productMenu id="userGuide"
  9291. type="1"
  9292. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  9293. size="1.14MB" >
  9294. </productMenu>
  9295. <productID id="5441"
  9296. />
  9297. <productGroupable type="0"
  9298. />
  9299. </product>
  9300. <product id="5R"
  9301. name="5R"
  9302. series="5"
  9303. latestVersion="1.0.1"
  9304. show = "1" >
  9305. <productMenu id="protocol"
  9306. type="3" >
  9307. </productMenu>
  9308. <productMenu id="sip"
  9309. type="1" >
  9310. </productMenu>
  9311. <productMenu id="bluetoothIntercom"
  9312. type="1" >
  9313. </productMenu>
  9314. <productMenu id="phone"
  9315. type="1" >
  9316. </productMenu>
  9317. <productMenu id="fmradio"
  9318. type="1" >
  9319. </productMenu>
  9320. <productMenu id="deviceSetting"
  9321. type="1"
  9322. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9323. </productMenu>
  9324. <productMenu id="quickGuide"
  9325. type="0"
  9326. url=""
  9327. size="934KB" >
  9328. </productMenu>
  9329. <productMenu id="userGuide"
  9330. type="1"
  9331. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  9332. size="1.14MB" >
  9333. </productMenu>
  9334. <productMenu id="connectGuide"
  9335. type="1"
  9336. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  9337. size="1.12MB" >
  9338. </productMenu>
  9339. <productID id="5591"
  9340. />
  9341. <productGroupable type="0"
  9342. />
  9343. </product>
  9344. <product id="5R"
  9345. name="5R LITE"
  9346. series="5"
  9347. latestVersion="1.0.1"
  9348. show = "1" >
  9349. <productMenu id="protocol"
  9350. type="3" >
  9351. </productMenu>
  9352. <productMenu id="sip"
  9353. type="1" >
  9354. </productMenu>
  9355. <productMenu id="bluetoothIntercom"
  9356. type="1" >
  9357. </productMenu>
  9358. <productMenu id="phone"
  9359. type="1" >
  9360. </productMenu>
  9361. <productMenu id="fmradio"
  9362. type="1" >
  9363. </productMenu>
  9364. <productMenu id="deviceSetting"
  9365. type="1"
  9366. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  9367. </productMenu>
  9368. <productMenu id="quickGuide"
  9369. type="0"
  9370. url=""
  9371. size="934KB" >
  9372. </productMenu>
  9373. <productMenu id="userGuide"
  9374. type="1"
  9375. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  9376. size="1.14MB" >
  9377. </productMenu>
  9378. <productMenu id="connectGuide"
  9379. type="1"
  9380. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  9381. size="1.12MB" >
  9382. </productMenu>
  9383. <productID id="5592"
  9384. />
  9385. <productGroupable type="0"
  9386. />
  9387. </product>
  9388. <product id="50RLE"
  9389. name="50R LE"
  9390. series="50"
  9391. latestVersion="1.1"
  9392. show = "0" >
  9393. <productMenu id="protocol"
  9394. type="2" >
  9395. </productMenu>
  9396. <productMenu id="alexa"
  9397. type="0" >
  9398. </productMenu>
  9399. <productMenu id="sip"
  9400. type="1" >
  9401. </productMenu>
  9402. <productMenu id="meshIntercom"
  9403. type="30" >
  9404. </productMenu>
  9405. <productMenu id="meshIntercom+"
  9406. type="3"
  9407. url="2" >
  9408. <productMenuType version="1.0.9"
  9409. type="2"
  9410. />
  9411. </productMenu>
  9412. <productMenu id="waveIntercom"
  9413. type="1" >
  9414. <productMenuType version="1.0.9"
  9415. type="0"
  9416. />
  9417. </productMenu>
  9418. <productMenu id="bluetoothIntercom"
  9419. type="1" >
  9420. </productMenu>
  9421. <productMenu id="phone"
  9422. type="1" >
  9423. </productMenu>
  9424. <productMenu id="music"
  9425. type="1" >
  9426. </productMenu>
  9427. <productMenu id="fmradio"
  9428. type="0" >
  9429. </productMenu>
  9430. <productMenu id="deviceSetting"
  9431. type="1"
  9432. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  9433. <productMenuURL version="1.0.9"
  9434. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  9435. />
  9436. </productMenu>
  9437. <productMenu id="quickGuide"
  9438. type="0"
  9439. url=""
  9440. size="344KB" >
  9441. </productMenu>
  9442. <productMenu id="userGuide"
  9443. type="0"
  9444. url=""
  9445. size="3.41MB" >
  9446. </productMenu>
  9447. <productMenu id="volume"
  9448. type="11" >
  9449. </productMenu>
  9450. <productMenu id="battery"
  9451. type="1" >
  9452. </productMenu>
  9453. <productID id="3223"
  9454. />
  9455. <productGroupable type="0"
  9456. />
  9457. </product>
  9458. <product id="5RLOUIS"
  9459. name="5R LOUIS EDITION"
  9460. series="5"
  9461. latestVersion="1.0"
  9462. show = "-1" >
  9463. <productMenu id="protocol"
  9464. type="3" >
  9465. </productMenu>
  9466. <productMenu id="sip"
  9467. type="1" >
  9468. </productMenu>
  9469. <productMenu id="bluetoothIntercom"
  9470. type="1" >
  9471. </productMenu>
  9472. <productMenu id="phone"
  9473. type="1" >
  9474. </productMenu>
  9475. <productMenu id="fmradio"
  9476. type="1" >
  9477. </productMenu>
  9478. <productMenu id="deviceSetting"
  9479. type="1"
  9480. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9481. </productMenu>
  9482. <productMenu id="quickGuide"
  9483. type="0"
  9484. url=""
  9485. size="934KB" >
  9486. </productMenu>
  9487. <productMenu id="userGuide"
  9488. type="0"
  9489. url=""
  9490. size="1.14MB" >
  9491. </productMenu>
  9492. <productID id="5597"
  9493. />
  9494. <productGroupable type="0"
  9495. />
  9496. </product>
  9497. <product id="5S"
  9498. name="Ridekont 5S"
  9499. series="5"
  9500. latestVersion="2.3"
  9501. show = "-1" >
  9502. <productMenu id="protocol"
  9503. type="3" >
  9504. </productMenu>
  9505. <productMenu id="sip"
  9506. type="1" >
  9507. </productMenu>
  9508. <productMenu id="bluetoothIntercom"
  9509. type="1" >
  9510. </productMenu>
  9511. <productMenu id="phone"
  9512. type="1" >
  9513. </productMenu>
  9514. <productMenu id="fmradio"
  9515. type="0" >
  9516. </productMenu>
  9517. <productMenu id="deviceSetting"
  9518. type="1"
  9519. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9520. </productMenu>
  9521. <productMenu id="quickGuide"
  9522. type="0"
  9523. url=""
  9524. size="934KB" >
  9525. </productMenu>
  9526. <productMenu id="userGuide"
  9527. type="1"
  9528. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9529. size="1.14MB" >
  9530. </productMenu>
  9531. <productID id="5589"
  9532. />
  9533. <productGroupable type="0"
  9534. />
  9535. </product>
  9536. <product id="5R"
  9537. name="Ridekont 5R"
  9538. series="5"
  9539. latestVersion="1.0"
  9540. show = "0" >
  9541. <productMenu id="protocol"
  9542. type="3" >
  9543. </productMenu>
  9544. <productMenu id="sip"
  9545. type="1" >
  9546. </productMenu>
  9547. <productMenu id="bluetoothIntercom"
  9548. type="1" >
  9549. </productMenu>
  9550. <productMenu id="phone"
  9551. type="1" >
  9552. </productMenu>
  9553. <productMenu id="fmradio"
  9554. type="1" >
  9555. </productMenu>
  9556. <productMenu id="deviceSetting"
  9557. type="1"
  9558. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9559. </productMenu>
  9560. <productMenu id="quickGuide"
  9561. type="1"
  9562. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  9563. size="934KB" >
  9564. </productMenu>
  9565. <productMenu id="userGuide"
  9566. type="1"
  9567. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  9568. size="1.14MB" >
  9569. </productMenu>
  9570. <productID id="5593"
  9571. />
  9572. <productGroupable type="0"
  9573. />
  9574. </product>
  9575. <product id="5R"
  9576. name="Ridekont 5R LITE"
  9577. series="5"
  9578. latestVersion="1.0"
  9579. show = "0" >
  9580. <productMenu id="protocol"
  9581. type="3" >
  9582. </productMenu>
  9583. <productMenu id="sip"
  9584. type="1" >
  9585. </productMenu>
  9586. <productMenu id="bluetoothIntercom"
  9587. type="1" >
  9588. </productMenu>
  9589. <productMenu id="phone"
  9590. type="1" >
  9591. </productMenu>
  9592. <productMenu id="fmradio"
  9593. type="1" >
  9594. </productMenu>
  9595. <productMenu id="deviceSetting"
  9596. type="1"
  9597. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  9598. </productMenu>
  9599. <productMenu id="quickGuide"
  9600. type="0"
  9601. url=""
  9602. size="934KB" >
  9603. </productMenu>
  9604. <productMenu id="userGuide"
  9605. type="1"
  9606. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  9607. size="1.14MB" >
  9608. </productMenu>
  9609. <productID id="5594"
  9610. />
  9611. <productGroupable type="0"
  9612. />
  9613. </product>
  9614. <product id="C30"
  9615. name="SENA C30"
  9616. series="C"
  9617. latestVersion="1.1.3"
  9618. latestVersionVoicePrompt="0.11"
  9619. show = "1" >
  9620. <productMenu id="protocol"
  9621. type="2" >
  9622. </productMenu>
  9623. <productMenu id="alexa"
  9624. type="0" >
  9625. </productMenu>
  9626. <productMenu id="ota"
  9627. type="2" >
  9628. <otaPackages>
  9629. <package
  9630. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.1.3-build2.img"
  9631. size="3144148"
  9632. />
  9633. </otaPackages>
  9634. </productMenu>
  9635. <productMenu id="wa"
  9636. type="0" >
  9637. </productMenu>
  9638. <productMenu id="meshIntercom"
  9639. type="30" >
  9640. </productMenu>
  9641. <productMenu id="meshIntercom+"
  9642. type="3"
  9643. url="2" >
  9644. <productMenuType version="1.0.9"
  9645. type="2"
  9646. />
  9647. </productMenu>
  9648. <productMenu id="phone"
  9649. type="1" >
  9650. </productMenu>
  9651. <productMenu id="music"
  9652. type="1" >
  9653. </productMenu>
  9654. <productMenu id="musicSharing"
  9655. type="0" >
  9656. </productMenu>
  9657. <productMenu id="deviceSetting"
  9658. type="1"
  9659. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_06_zh_rCN.xml" >
  9660. <productMenuURL version="1.0.9"
  9661. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  9662. />
  9663. </productMenu>
  9664. <productMenu id="quickGuide"
  9665. type="1"
  9666. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  9667. size="1.12MB" >
  9668. </productMenu>
  9669. <productMenu id="userGuide"
  9670. type="0"
  9671. url=""
  9672. size="2.0MB" >
  9673. </productMenu>
  9674. <productMenu id="videoGuide"
  9675. type="0"
  9676. url=""
  9677. size="3.41MB" >
  9678. </productMenu>
  9679. <productMenu id="volume"
  9680. type="12" >
  9681. </productMenu>
  9682. <productMenu id="battery"
  9683. type="1" >
  9684. </productMenu>
  9685. <productID id="683A"
  9686. />
  9687. <productGroupable type="0"
  9688. />
  9689. </product>
  9690. <product id="C20"
  9691. name="C20"
  9692. series="5"
  9693. latestVersion="1.0"
  9694. show = "0" >
  9695. <productMenu id="protocol"
  9696. type="3" >
  9697. </productMenu>
  9698. <productMenu id="sip"
  9699. type="1" >
  9700. </productMenu>
  9701. <productMenu id="bluetoothIntercom"
  9702. type="1" >
  9703. </productMenu>
  9704. <productMenu id="phone"
  9705. type="1" >
  9706. </productMenu>
  9707. <productMenu id="deviceSetting"
  9708. type="1"
  9709. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  9710. </productMenu>
  9711. <productMenu id="quickGuide"
  9712. type="1"
  9713. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  9714. size="934KB" >
  9715. </productMenu>
  9716. <productMenu id="userGuide"
  9717. type="1"
  9718. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  9719. size="1.14MB" >
  9720. </productMenu>
  9721. <productID id="3701"
  9722. />
  9723. <productGroupable type="0"
  9724. />
  9725. </product>
  9726. <product id="C10"
  9727. name="C10"
  9728. series="5"
  9729. latestVersion="1.4.1"
  9730. show = "0" >
  9731. <productMenu id="protocol"
  9732. type="3" >
  9733. </productMenu>
  9734. <productMenu id="sip"
  9735. type="1" >
  9736. </productMenu>
  9737. <productMenu id="bluetoothIntercom"
  9738. type="1" >
  9739. </productMenu>
  9740. <productMenu id="phone"
  9741. type="1" >
  9742. </productMenu>
  9743. <productMenu id="fmradio"
  9744. type="0" >
  9745. </productMenu>
  9746. <productMenu id="deviceSetting"
  9747. type="1"
  9748. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  9749. </productMenu>
  9750. <productMenu id="userGuide"
  9751. type="1"
  9752. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  9753. size="1.14MB" >
  9754. </productMenu>
  9755. <productID id="5595"
  9756. />
  9757. <productGroupable type="0"
  9758. />
  9759. </product>
  9760. <product id="J30"
  9761. name="J30"
  9762. series="J"
  9763. latestVersion="1.2"
  9764. latestVersionVoicePrompt="0.13"
  9765. show = "0" >
  9766. <productMenu id="protocol"
  9767. type="2" >
  9768. </productMenu>
  9769. <productMenu id="alexa"
  9770. type="0" >
  9771. </productMenu>
  9772. <productMenu id="ota"
  9773. type="2" >
  9774. <otaPackages>
  9775. <package
  9776. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2-build1.img"
  9777. size="3144148"
  9778. />
  9779. </otaPackages>
  9780. </productMenu>
  9781. <productMenu id="wa"
  9782. type="0" >
  9783. </productMenu>
  9784. <productMenu id="meshIntercom"
  9785. type="30" >
  9786. </productMenu>
  9787. <productMenu id="meshIntercom+"
  9788. type="3"
  9789. url="2" >
  9790. <productMenuType version="1.0.9"
  9791. type="2"
  9792. />
  9793. </productMenu>
  9794. <productMenu id="waveIntercom"
  9795. type="1" >
  9796. <productMenuType version="1.1.9"
  9797. type="0"
  9798. />
  9799. </productMenu>
  9800. <productMenu id="phone"
  9801. type="1" >
  9802. </productMenu>
  9803. <productMenu id="music"
  9804. type="1" >
  9805. </productMenu>
  9806. <productMenu id="musicSharing"
  9807. type="0" >
  9808. </productMenu>
  9809. <productMenu id="deviceSetting"
  9810. type="1"
  9811. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  9812. <productMenuURL version="1.0.9"
  9813. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  9814. />
  9815. </productMenu>
  9816. <productMenu id="quickGuide"
  9817. type="0"
  9818. url=""
  9819. size="1.12MB" >
  9820. </productMenu>
  9821. <productMenu id="userGuide"
  9822. type="1"
  9823. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  9824. size="2.0MB" >
  9825. </productMenu>
  9826. <productMenu id="videoGuide"
  9827. type="0"
  9828. url=""
  9829. size="3.41MB" >
  9830. </productMenu>
  9831. <productMenu id="volume"
  9832. type="12" >
  9833. </productMenu>
  9834. <productMenu id="battery"
  9835. type="1" >
  9836. </productMenu>
  9837. <productID id="6848"
  9838. />
  9839. <productGroupable type="0"
  9840. />
  9841. </product>
  9842. <product id="J10"
  9843. name="J10"
  9844. series="5"
  9845. latestVersion="1.1.1"
  9846. show = "0" >
  9847. <productMenu id="protocol"
  9848. type="3" >
  9849. </productMenu>
  9850. <productMenu id="sip"
  9851. type="1" >
  9852. </productMenu>
  9853. <productMenu id="bluetoothIntercom"
  9854. type="1" >
  9855. </productMenu>
  9856. <productMenu id="phone"
  9857. type="1" >
  9858. </productMenu>
  9859. <productMenu id="fmradio"
  9860. type="0" >
  9861. </productMenu>
  9862. <productMenu id="deviceSetting"
  9863. type="1"
  9864. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  9865. </productMenu>
  9866. <productMenu id="userGuide"
  9867. type="1"
  9868. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  9869. size="1.14MB" >
  9870. </productMenu>
  9871. <productID id="5598"
  9872. />
  9873. <productGroupable type="0"
  9874. />
  9875. </product>
  9876. <product id="B20"
  9877. name="B20"
  9878. series="B"
  9879. latestVersion="1.1"
  9880. latestVersionVoicePrompt="0.13"
  9881. show = "0" >
  9882. <productMenu id="protocol"
  9883. type="2" >
  9884. </productMenu>
  9885. <productMenu id="alexa"
  9886. type="0" >
  9887. </productMenu>
  9888. <productMenu id="ota"
  9889. type="2" >
  9890. <otaPackages>
  9891. <package
  9892. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1-build0.img"
  9893. size="3144148"
  9894. />
  9895. </otaPackages>
  9896. </productMenu>
  9897. <productMenu id="wa"
  9898. type="0" >
  9899. </productMenu>
  9900. <productMenu id="meshIntercom"
  9901. type="30" >
  9902. </productMenu>
  9903. <productMenu id="phone"
  9904. type="1" >
  9905. </productMenu>
  9906. <productMenu id="music"
  9907. type="1" >
  9908. </productMenu>
  9909. <productMenu id="musicSharing"
  9910. type="0" >
  9911. </productMenu>
  9912. <productMenu id="deviceSetting"
  9913. type="1"
  9914. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  9915. <productMenuURL version="1.0.9"
  9916. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  9917. />
  9918. </productMenu>
  9919. <productMenu id="quickGuide"
  9920. type="0"
  9921. url=""
  9922. size="1.12MB" >
  9923. </productMenu>
  9924. <productMenu id="userGuide"
  9925. type="1"
  9926. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  9927. size="2.0MB" >
  9928. </productMenu>
  9929. <productMenu id="videoGuide"
  9930. type="0"
  9931. url=""
  9932. size="3.41MB" >
  9933. </productMenu>
  9934. <productMenu id="volume"
  9935. type="12" >
  9936. </productMenu>
  9937. <productMenu id="battery"
  9938. type="1" >
  9939. </productMenu>
  9940. <productID id="6847"
  9941. />
  9942. <productGroupable type="0"
  9943. />
  9944. </product>
  9945. <product id="B10"
  9946. name="B10"
  9947. series="5"
  9948. latestVersion="1.2.1"
  9949. show = "0" >
  9950. <productMenu id="protocol"
  9951. type="3" >
  9952. </productMenu>
  9953. <productMenu id="sip"
  9954. type="1" >
  9955. </productMenu>
  9956. <productMenu id="bluetoothIntercom"
  9957. type="1" >
  9958. </productMenu>
  9959. <productMenu id="phone"
  9960. type="1" >
  9961. </productMenu>
  9962. <productMenu id="fmradio"
  9963. type="0" >
  9964. </productMenu>
  9965. <productMenu id="deviceSetting"
  9966. type="1"
  9967. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  9968. </productMenu>
  9969. <productMenu id="userGuide"
  9970. type="1"
  9971. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  9972. size="1.14MB" >
  9973. </productMenu>
  9974. <productID id="5596"
  9975. />
  9976. <productGroupable type="0"
  9977. />
  9978. </product>
  9979. <product id="E30"
  9980. name="E30"
  9981. series="E"
  9982. latestVersion="1.1"
  9983. latestVersionVoicePrompt="0.13"
  9984. show = "0" >
  9985. <productMenu id="protocol"
  9986. type="2" >
  9987. </productMenu>
  9988. <productMenu id="alexa"
  9989. type="0" >
  9990. </productMenu>
  9991. <productMenu id="ota"
  9992. type="2" >
  9993. <otaPackages>
  9994. <package
  9995. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.1-build0.img"
  9996. size="3144148"
  9997. />
  9998. </otaPackages>
  9999. </productMenu>
  10000. <productMenu id="wa"
  10001. type="0" >
  10002. </productMenu>
  10003. <productMenu id="meshIntercom"
  10004. type="30" >
  10005. </productMenu>
  10006. <productMenu id="meshIntercom+"
  10007. type="3"
  10008. url="2" >
  10009. </productMenu>
  10010. <productMenu id="waveIntercom"
  10011. type="1" >
  10012. <productMenuType version="1.0.9"
  10013. type="0"
  10014. />
  10015. </productMenu>
  10016. <productMenu id="phone"
  10017. type="1" >
  10018. </productMenu>
  10019. <productMenu id="music"
  10020. type="1" >
  10021. </productMenu>
  10022. <productMenu id="musicSharing"
  10023. type="0" >
  10024. </productMenu>
  10025. <productMenu id="deviceSetting"
  10026. type="1"
  10027. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  10028. </productMenu>
  10029. <productMenu id="quickGuide"
  10030. type="0"
  10031. url=""
  10032. size="1.12MB" >
  10033. </productMenu>
  10034. <productMenu id="userGuide"
  10035. type="1"
  10036. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  10037. size="2.0MB" >
  10038. </productMenu>
  10039. <productMenu id="videoGuide"
  10040. type="0"
  10041. url=""
  10042. size="3.41MB" >
  10043. </productMenu>
  10044. <productMenu id="volume"
  10045. type="12" >
  10046. </productMenu>
  10047. <productMenu id="battery"
  10048. type="1" >
  10049. </productMenu>
  10050. <productID id="6846"
  10051. />
  10052. <productGroupable type="0"
  10053. />
  10054. </product>
  10055. <product id="ACSRAM"
  10056. name="ACS-RAM"
  10057. series="ACS"
  10058. latestVersion="1.0.5"
  10059. show = "1" >
  10060. <productMenu id="protocol"
  10061. type="3" >
  10062. </productMenu>
  10063. <productMenu id="sip"
  10064. type="1" >
  10065. </productMenu>
  10066. <productMenu id="bluetoothIntercom"
  10067. type="1" >
  10068. </productMenu>
  10069. <productMenu id="deviceSetting"
  10070. type="1"
  10071. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  10072. </productMenu>
  10073. <productMenu id="quickGuide"
  10074. type="1"
  10075. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  10076. size="344KB" >
  10077. </productMenu>
  10078. <productMenu id="userGuide"
  10079. type="1"
  10080. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  10081. size="1.14MB" >
  10082. </productMenu>
  10083. <productMenu id="connectGuide"
  10084. type="1"
  10085. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  10086. size="1.12MB" >
  10087. </productMenu>
  10088. <productID id="3400"
  10089. />
  10090. <productGroupable type="0"
  10091. />
  10092. </product>
  10093. <product id="ACS10"
  10094. name="ACS10"
  10095. series="ACS"
  10096. latestVersion="1.0.2"
  10097. show = "1" >
  10098. <productMenu id="protocol"
  10099. type="0">
  10100. </productMenu>
  10101. <productMenu id="sip"
  10102. type="1" >
  10103. </productMenu>
  10104. <productMenu id="bluetoothIntercom"
  10105. type="1" >
  10106. </productMenu>
  10107. <productMenu id="phone"
  10108. type="2" >
  10109. </productMenu>
  10110. <productMenu id="deviceSetting"
  10111. type="1"
  10112. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  10113. </productMenu>
  10114. <productMenu id="quickGuide"
  10115. type="1"
  10116. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  10117. size="970KB" >
  10118. </productMenu>
  10119. <productMenu id="userGuide"
  10120. type="1"
  10121. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  10122. size="1.26MB" >
  10123. </productMenu>
  10124. <productMenu id="connectGuide"
  10125. type="1"
  10126. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  10127. size="1.12MB" >
  10128. </productMenu>
  10129. <productID id="3300"
  10130. />
  10131. <productGroupable type="0"
  10132. />
  10133. </product>
  10134. <product id="DWO7ProMesh"
  10135. name="DWO 7 Pro Mesh"
  10136. series="50"
  10137. latestVersion="1.1"
  10138. latestVersionVoicePrompt="0.9"
  10139. show = "0" >
  10140. <productMenu id="protocol"
  10141. type="2" >
  10142. </productMenu>
  10143. <productMenu id="alexa"
  10144. type="0" >
  10145. </productMenu>
  10146. <productMenu id="ota"
  10147. type="2" >
  10148. <otaPackages>
  10149. <package
  10150. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  10151. size="2945812"
  10152. />
  10153. </otaPackages>
  10154. </productMenu>
  10155. <productMenu id="wa"
  10156. type="0" >
  10157. </productMenu>
  10158. <productMenu id="meshIntercom"
  10159. type="20" >
  10160. </productMenu>
  10161. <productMenu id="meshIntercom+"
  10162. type="3"
  10163. url="2" >
  10164. <productMenuType version="1.0.9"
  10165. type="2"
  10166. />
  10167. <productMenuURL version="2.1.1"
  10168. url="0"
  10169. />
  10170. </productMenu>
  10171. <productMenu id="waveIntercom"
  10172. type="1" >
  10173. <productMenuType version="1.0.9"
  10174. type="0"
  10175. />
  10176. </productMenu>
  10177. <productMenu id="phone"
  10178. type="1" >
  10179. </productMenu>
  10180. <productMenu id="music"
  10181. type="1" >
  10182. </productMenu>
  10183. <productMenu id="fmradio"
  10184. type="1" >
  10185. </productMenu>
  10186. <productMenu id="musicSharing"
  10187. type="0" >
  10188. </productMenu>
  10189. <productMenu id="deviceSetting"
  10190. type="1"
  10191. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  10192. <productMenuURL version="1.0.9"
  10193. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  10194. />
  10195. </productMenu>
  10196. <productMenu id="quickGuide"
  10197. type="1"
  10198. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  10199. size="1.12MB" >
  10200. </productMenu>
  10201. <productMenu id="userGuide"
  10202. type="1"
  10203. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  10204. size="2.0MB" >
  10205. </productMenu>
  10206. <productMenu id="volume"
  10207. type="12" >
  10208. </productMenu>
  10209. <productMenu id="battery"
  10210. type="1" >
  10211. </productMenu>
  10212. <productID id="6806"
  10213. />
  10214. <productGroupable type="0"
  10215. />
  10216. </product>
  10217. <product id="UCOM16R"
  10218. name="U-COM 16R"
  10219. series="UCOM"
  10220. latestVersion="1.0"
  10221. latestVersionMesh="1.0"
  10222. latestVersionVoicePrompt="1.0"
  10223. show = "-1" >
  10224. <productMenu id="protocol"
  10225. type="2" >
  10226. </productMenu>
  10227. <productMenu id="ota"
  10228. type="0" >
  10229. <otaLanguages>
  10230. <otaLanguage
  10231. id="0"
  10232. name="English"
  10233. package="0"
  10234. />
  10235. <otaLanguage
  10236. id="0"
  10237. name="French"
  10238. package="1"
  10239. />
  10240. <otaLanguage
  10241. id="0"
  10242. name="Spanish"
  10243. package="2"
  10244. />
  10245. <otaLanguage
  10246. id="0"
  10247. name="Italian"
  10248. package="3"
  10249. />
  10250. <otaLanguage
  10251. id="0"
  10252. name="German"
  10253. package="4"
  10254. />
  10255. <otaLanguage
  10256. id="0"
  10257. name="Dutch"
  10258. package="5"
  10259. />
  10260. <otaLanguage
  10261. id="0"
  10262. name="Russian"
  10263. package="6"
  10264. />
  10265. <otaLanguage
  10266. id="0"
  10267. name="Chinese"
  10268. package="7"
  10269. />
  10270. <otaLanguage
  10271. id="0"
  10272. name="Korean"
  10273. package="8"
  10274. />
  10275. <otaLanguage
  10276. id="0"
  10277. name="Japanese"
  10278. package="9"
  10279. />
  10280. <otaLanguage
  10281. id="0"
  10282. name="Finnish"
  10283. package="10"
  10284. />
  10285. </otaLanguages>
  10286. <otaPackages>
  10287. <package
  10288. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2.img"
  10289. size="5183988"
  10290. />
  10291. <package
  10292. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  10293. size="5183988"
  10294. />
  10295. <package
  10296. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  10297. size="5183988"
  10298. />
  10299. <package
  10300. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  10301. size="5183988"
  10302. />
  10303. <package
  10304. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  10305. size="5183988"
  10306. />
  10307. <package
  10308. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  10309. size="5183988"
  10310. />
  10311. <package
  10312. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  10313. size="5183988"
  10314. />
  10315. <package
  10316. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  10317. size="5183988"
  10318. />
  10319. <package
  10320. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  10321. size="5183988"
  10322. />
  10323. <package
  10324. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  10325. size="5183988"
  10326. />
  10327. <package
  10328. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  10329. size="5183988"
  10330. />
  10331. </otaPackages>
  10332. </productMenu>
  10333. <productMenu id="wa"
  10334. type="0" >
  10335. </productMenu>
  10336. <productMenu id="sip"
  10337. type="1" >
  10338. </productMenu>
  10339. <productMenu id="led"
  10340. type="0" >
  10341. </productMenu>
  10342. <productMenu id="illusion"
  10343. type="1" >
  10344. </productMenu>
  10345. <productMenu id="meshIntercom"
  10346. type="30" >
  10347. </productMenu>
  10348. <productMenu id="meshIntercom+"
  10349. type="3"
  10350. url="2" >
  10351. </productMenu>
  10352. <productMenu id="waveIntercom"
  10353. type="0" >
  10354. </productMenu>
  10355. <productMenu id="bluetoothIntercom"
  10356. type="1" >
  10357. </productMenu>
  10358. <productMenu id="bluetoothIntercomGrouping"
  10359. type="0" >
  10360. </productMenu>
  10361. <productMenu id="fmradio"
  10362. type="1"
  10363. url="1" >
  10364. </productMenu>
  10365. <productMenu id="phone"
  10366. type="1" >
  10367. </productMenu>
  10368. <productMenu id="music"
  10369. type="1" >
  10370. </productMenu>
  10371. <productMenu id="musicSharing"
  10372. type="0" >
  10373. </productMenu>
  10374. <productMenu id="deviceSetting"
  10375. type="1"
  10376. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  10377. </productMenu>
  10378. <productMenu id="quickGuide"
  10379. type="0"
  10380. url=""
  10381. size="1.12MB" >
  10382. </productMenu>
  10383. <productMenu id="userGuide"
  10384. type="1"
  10385. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  10386. size="2.0MB" >
  10387. </productMenu>
  10388. <productMenu id="videoGuide"
  10389. type="0"
  10390. url=""
  10391. size="3.41MB" >
  10392. </productMenu>
  10393. <productMenu id="volume"
  10394. type="16" >
  10395. </productMenu>
  10396. <productMenu id="soundMode"
  10397. type="1" >
  10398. </productMenu>
  10399. <productMenu id="battery"
  10400. type="1" >
  10401. </productMenu>
  10402. <productID id="6A83"
  10403. />
  10404. <productGroupable type="0"
  10405. />
  10406. </product>
  10407. <product id="MeshStation"
  10408. name="Mesh Station"
  10409. series="50"
  10410. latestVersion="0.9"
  10411. show = "-1" >
  10412. <productMenu id="protocol"
  10413. type="2" >
  10414. </productMenu>
  10415. <productMenu id="meshIntercom"
  10416. type="20"
  10417. url="99" >
  10418. </productMenu>
  10419. <productID id="3161"
  10420. />
  10421. <productGroupable type="0"
  10422. />
  10423. </product>
  10424. </products>
  10425. </sna>