ONKYOdb.pm 267 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938
  1. # $Id: ONKYOdb.pm 12403 2016-10-22 13:23:39Z loredo $
  2. ##############################################################################
  3. #
  4. # ONKYOdb.pm
  5. # ONKYO command database for ONKYO AVR module to split DB from code
  6. #
  7. # Copyright by Julian Pawlowski
  8. # e-mail: julian.pawlowski at gmail.com
  9. #
  10. # This file is part of fhem.
  11. #
  12. # Fhem is free software: you can redistribute it and/or modify
  13. # it under the terms of the GNU General Public License as published by
  14. # the Free Software Foundation, either version 2 of the License, or
  15. # (at your option) any later version.
  16. #
  17. # Fhem is distributed in the hope that it will be useful,
  18. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. # GNU General Public License for more details.
  21. #
  22. # You should have received a copy of the GNU General Public License
  23. # along with fhem. If not, see <http://www.gnu.org/licenses/>.
  24. #
  25. ##############################################################################
  26. sub ONKYOdb_Initialize() {
  27. }
  28. package ONKYOdb;
  29. use strict;
  30. use warnings;
  31. # ----------------Human Readable command mapping table-----------------------
  32. my $ONKYO_cmds_hr = {
  33. 'dock' => {
  34. 'command-for-docking-station-via-ri' => 'CDS'
  35. },
  36. '1' => {
  37. '12v-trigger-a' => 'TGA',
  38. '12v-trigger-b' => 'TGB',
  39. '12v-trigger-c' => 'TGC',
  40. 'audio-information' => 'IFA',
  41. 'audio-input' => 'SLA',
  42. 'audyssey-2eq-multeq-multeq-xt' => 'ADY',
  43. 'audyssey-dynamic-eq' => 'ADQ',
  44. 'audyssey-dynamic-volume' => 'ADV',
  45. 'cd-player' => 'CCD',
  46. 'cd-recorder' => 'CCR',
  47. 'center-temporary-level' => 'CTL',
  48. 'cinema-filter' => 'RAS',
  49. 'dab-display-info' => 'UDD',
  50. 'dab-preset' => 'UPR',
  51. 'dab-station-name' => 'UDS',
  52. 'dat-recorder' => 'CDT',
  53. 'dimmer-level' => 'DIM',
  54. 'display-mode' => 'DIF',
  55. 'dolby-volume' => 'DVL',
  56. 'dvd-player' => 'CDV',
  57. 'graphics-equalizer' => 'CEQ',
  58. 'hd-radio-artist-name-info' => 'UHA',
  59. 'hd-radio-blend-mode' => 'UHB',
  60. 'hd-radio-channel-name-info' => 'UHC',
  61. 'hd-radio-channel-program' => 'UHP',
  62. 'hd-radio-detail-info' => 'UHD',
  63. 'hd-radio-title-info' => 'UHT',
  64. 'hd-radio-tuner-status' => 'UHS',
  65. 'hdmi-audio-out' => 'HAO',
  66. 'hdmi-output' => 'HDO',
  67. 'hdmi-cec' => 'CEC',
  68. 'input' => 'SLI',
  69. 'internet-radio-preset' => 'NPR',
  70. 'ipod-album-name-info' => 'IAL',
  71. 'ipod-artist-name-info' => 'IAT',
  72. 'ipod-list-info' => 'ILS',
  73. 'ipod-mode-change' => 'IMD',
  74. 'ipod-play-status' => 'IST',
  75. 'ipod-time-info' => 'ITM',
  76. 'ipod-title-name' => 'ITI',
  77. 'ipod-track-info' => 'ITR',
  78. 'isf-mode' => 'ISF',
  79. 'late-night' => 'LTN',
  80. 'listening-mode' => 'LMD',
  81. 'md-recorder' => 'CMD',
  82. 'memory-setup' => 'MEM',
  83. 'monitor-out-resolution' => 'RES',
  84. 'music-optimizer' => 'MOT',
  85. 'mute' => 'AMT',
  86. 'net-keyboard' => 'NKY',
  87. 'net-popup-message' => 'NPU',
  88. 'net-receiver-information' => 'NRI',
  89. 'net-service' => 'NSV',
  90. 'network-standby' => 'NSB',
  91. 'net-usb-album-name-info' => 'NAL',
  92. 'net-usb-artist-name-info' => 'NAT',
  93. 'net-usb-jacket-art' => 'NJA',
  94. 'net-usb-list-info' => 'NLS',
  95. 'net-usb-list-info-xml' => 'NLA',
  96. 'net-usb-list-title-info' => 'NLT',
  97. 'net-usb-device-status' => 'NDS',
  98. 'net-usb-menu-status' => 'NMS',
  99. 'net-usb-play-status' => 'NST',
  100. 'net-usb-time-info' => 'NTM',
  101. 'net-usb-time-seek' => 'NTS',
  102. 'net-usb-title-name' => 'NTI',
  103. 'net-usb-track-info' => 'NTR',
  104. 'net-usb' => 'NTC',
  105. 'preset' => 'PRS',
  106. 'preset-memory' => 'PRM',
  107. 'pty-scan' => 'PTS',
  108. 'rds-information' => 'RDS',
  109. 'record-output' => 'SLR',
  110. 'setup' => 'OSD',
  111. 'sirius-artist-name-info' => 'SAT',
  112. 'sirius-category' => 'SCT',
  113. 'sirius-channel-name-info' => 'SCN',
  114. 'sirius-channel-number' => 'SCH',
  115. 'sirius-parental-lock' => 'SLK',
  116. 'sirius-title-info' => 'STI',
  117. 'sleep' => 'SLP',
  118. 'speaker-a' => 'SPA',
  119. 'speaker-b' => 'SPB',
  120. 'speaker-layout' => 'SPL',
  121. 'speaker-level-calibration' => 'SLC',
  122. 'subwoofer-temporary-level' => 'SWL',
  123. 'subwoofer2-temporary-level' => 'SW2',
  124. 'phase-matching-bass' => 'PMB',
  125. 'power' => 'PWR',
  126. 'tape1-a' => 'CT1',
  127. 'tape2-b' => 'CT2',
  128. 'tone-center' => 'TCT',
  129. 'tone-front' => 'TFR',
  130. 'tone-front-high' => 'TFH',
  131. 'tone-front-wide' => 'TFW',
  132. 'tone-subwoofer' => 'TSW',
  133. 'tone-surround' => 'TSR',
  134. 'tone-surround-back' => 'TSB',
  135. 'tp-scan' => 'TPS',
  136. 'tunerFrequency' => 'TUN',
  137. 'universal-port' => 'CPT',
  138. 'video-information' => 'IFV',
  139. 'video-output' => 'VOS',
  140. 'video-picture-mode' => 'VPM',
  141. 'video-wide-mode' => 'VWM',
  142. 'volume' => 'MVL',
  143. 'xm-artist-name-info' => 'XAT',
  144. 'xm-category' => 'XCT',
  145. 'xm-channel-name-info' => 'XCN',
  146. 'xm-channel-number' => 'XCH',
  147. 'xm-title-info' => 'XTI'
  148. },
  149. '2' => {
  150. 'balance' => 'ZBL',
  151. 'internet-radio-preset' => 'NPZ',
  152. 'late-night' => 'LTZ',
  153. 'listening-mode' => 'LMZ',
  154. 'mute' => 'ZMT',
  155. 'net-usb-z' => 'NTZ',
  156. 'power' => 'ZPW',
  157. 'preset' => 'PRZ',
  158. 're-eq-academy-filter' => 'RAZ',
  159. 'input' => 'SLZ',
  160. 'tone' => 'ZTN',
  161. 'tunerFrequency' => 'TUZ',
  162. 'volume' => 'ZVL'
  163. },
  164. '3' => {
  165. 'balance' => 'BL3',
  166. 'internet-radio-preset' => 'NP3',
  167. 'mute' => 'MT3',
  168. 'net-usb-z' => 'NT3',
  169. 'power' => 'PW3',
  170. 'preset' => 'PR3',
  171. 'input' => 'SL3',
  172. 'tone' => 'TN3',
  173. 'tunerFrequency' => 'TU3',
  174. 'volume' => 'VL3'
  175. },
  176. '4' => {
  177. 'internet-radio-preset' => 'NP4',
  178. 'mute' => 'MT4',
  179. 'net-usb-z' => 'NT4',
  180. 'power' => 'PW4',
  181. 'preset' => 'PR4',
  182. 'input' => 'SL4',
  183. 'tunerFrequency' => 'TU4',
  184. 'volume' => 'VL4'
  185. }
  186. };
  187. # ----------------Human Readable value mapping table-----------------------
  188. my $ONKYO_values_hr = {
  189. 'dock' => {
  190. 'CDS' => {
  191. 'album' => 'ALBUM-',
  192. 'blight' => 'BLIGHT',
  193. 'chapt' => 'CHAPT-',
  194. 'down' => 'DOWN',
  195. 'enter' => 'ENTER',
  196. 'ff' => 'FF',
  197. 'men' => 'MENU',
  198. 'mute' => 'MUTE',
  199. 'off' => 'PWROFF',
  200. 'on' => 'PWRON',
  201. 'pause' => 'PAUSE',
  202. 'plist' => 'PLIST-',
  203. 'ply-pa' => 'PLY/PAU',
  204. 'ply-res' => 'PLY/RES',
  205. 'random' => 'RANDOM',
  206. 'repeat' => 'REPEAT',
  207. 'rew' => 'REW',
  208. 'skip-f' => 'SKIP.F',
  209. 'skip-r' => 'SKIP.R',
  210. 'stop' => 'STOP',
  211. 'up' => 'UP'
  212. }
  213. },
  214. '1' => {
  215. 'ADQ' => {
  216. 'off' => '00',
  217. 'on' => '01',
  218. 'query' => 'QSTN',
  219. 'up' => 'UP'
  220. },
  221. 'ADV' => {
  222. 'heavy' => '03',
  223. 'light' => '01',
  224. 'medium' => '02',
  225. 'off' => '00',
  226. 'query' => 'QSTN',
  227. 'up' => 'UP'
  228. },
  229. 'ADY' => {
  230. 'movie' => '01',
  231. 'music' => '02',
  232. 'off' => '00',
  233. 'on' => '01',
  234. 'query' => 'QSTN',
  235. 'up' => 'UP'
  236. },
  237. 'AMT' => {
  238. 'off' => '00',
  239. 'on' => '01',
  240. 'query' => 'QSTN',
  241. 'toggle' => 'TG'
  242. },
  243. 'CCD' => {
  244. '0' => '0',
  245. '1' => '1',
  246. '10' => '+10',
  247. '2' => '2',
  248. '3' => '3',
  249. '4' => '4',
  250. '5' => '5',
  251. '6' => '6',
  252. '7' => '7',
  253. '8' => '8',
  254. '9' => '9',
  255. 'clear' => 'CLEAR',
  256. 'd-mode' => 'D.MODE',
  257. 'd-skip' => 'D.SKIP',
  258. 'disc-f' => 'DISC.F',
  259. 'disc-r' => 'DISC.R',
  260. 'disc1' => 'DISC1',
  261. 'disc2' => 'DISC2',
  262. 'disc3' => 'DISC3',
  263. 'disc4' => 'DISC4',
  264. 'disc5' => 'DISC5',
  265. 'disc6' => 'DISC6',
  266. 'disp' => 'DISP',
  267. 'ff' => 'FF',
  268. 'memory' => 'MEMORY',
  269. 'op-cl' => 'OP/CL',
  270. 'pause' => 'PAUSE',
  271. 'play' => 'PLAY',
  272. 'pon' => 'PON',
  273. 'power' => 'POWER',
  274. 'random' => 'RANDOM',
  275. 'repeat' => 'REPEAT',
  276. 'rew' => 'REW',
  277. 'skip-f' => 'SKIP.F',
  278. 'skip-r' => 'SKIP.R',
  279. 'stby' => 'STBY',
  280. 'stop' => 'STOP',
  281. 'track' => 'TRACK'
  282. },
  283. 'CCR' => {
  284. '1' => '1',
  285. '10-0' => '10/0',
  286. '2' => '2',
  287. '3' => '3',
  288. '4' => '4',
  289. '5' => '5',
  290. '6' => '6',
  291. '7' => '7',
  292. '8' => '8',
  293. '9' => '9',
  294. 'clear' => 'CLEAR',
  295. 'disp' => 'DISP',
  296. 'ff' => 'FF',
  297. 'memory' => 'MEMORY',
  298. 'op-cl' => 'OP/CL',
  299. 'p-mode' => 'P.MODE',
  300. 'pause' => 'PAUSE',
  301. 'play' => 'PLAY',
  302. 'power' => 'POWER',
  303. 'random' => 'RANDOM',
  304. 'rec' => 'REC',
  305. 'repeat' => 'REPEAT',
  306. 'rew' => 'REW',
  307. 'scroll' => 'SCROLL',
  308. 'skip-f' => 'SKIP.F',
  309. 'skip-r' => 'SKIP.R',
  310. 'stby' => 'STBY',
  311. 'stop' => 'STOP'
  312. },
  313. 'CDT' => {
  314. 'ff' => 'FF',
  315. 'play' => 'PLAY',
  316. 'rc-pa' => 'RC/PAU',
  317. 'rew' => 'REW',
  318. 'skip-f' => 'SKIP.F',
  319. 'skip-r' => 'SKIP.R',
  320. 'stop' => 'STOP'
  321. },
  322. 'CDV' => {
  323. '0' => '0',
  324. '1' => '1',
  325. '10' => '10',
  326. '2' => '2',
  327. '3' => '3',
  328. '4' => '4',
  329. '5' => '5',
  330. '6' => '6',
  331. '7' => '7',
  332. '8' => '8',
  333. '9' => '9',
  334. 'abr' => 'ABR',
  335. 'angle' => 'ANGLE',
  336. 'asctg' => 'ASCTG',
  337. 'audio' => 'AUDIO',
  338. 'cdpcd' => 'CDPCD',
  339. 'clear' => 'CLEAR',
  340. 'conmem' => 'CONMEM',
  341. 'disc-f' => 'DISC.F',
  342. 'disc-r' => 'DISC.R',
  343. 'disc1' => 'DISC1',
  344. 'disc2' => 'DISC2',
  345. 'disc3' => 'DISC3',
  346. 'disc4' => 'DISC4',
  347. 'disc5' => 'DISC5',
  348. 'disc6' => 'DISC6',
  349. 'disp' => 'DISP',
  350. 'down' => 'DOWN',
  351. 'enter' => 'ENTER',
  352. 'ff' => 'FF',
  353. 'folddn' => 'FOLDDN',
  354. 'foldup' => 'FOLDUP',
  355. 'funmem' => 'FUNMEM',
  356. 'init' => 'INIT',
  357. 'lastplay' => 'LASTPLAY',
  358. 'left' => 'LEFT',
  359. 'memory' => 'MEMORY',
  360. 'men' => 'MENU',
  361. 'mspdn' => 'MSPDN',
  362. 'mspup' => 'MSPUP',
  363. 'op-cl' => 'OP/CL',
  364. 'p-mode' => 'P.MODE',
  365. 'pause' => 'PAUSE',
  366. 'pct' => 'PCT',
  367. 'play' => 'PLAY',
  368. 'power' => 'POWER',
  369. 'progre' => 'PROGRE',
  370. 'pwroff' => 'PWROFF',
  371. 'pwron' => 'PWRON',
  372. 'random' => 'RANDOM',
  373. 'repeat' => 'REPEAT',
  374. 'return' => 'RETURN',
  375. 'rew' => 'REW',
  376. 'right' => 'RIGHT',
  377. 'rsctg' => 'RSCTG',
  378. 'search' => 'SEARCH',
  379. 'setup' => 'SETUP',
  380. 'skip-f' => 'SKIP.F',
  381. 'skip-r' => 'SKIP.R',
  382. 'slow-f' => 'SLOW.F',
  383. 'slow-r' => 'SLOW.R',
  384. 'step-f' => 'STEP.F',
  385. 'step-r' => 'STEP.R',
  386. 'stop' => 'STOP',
  387. 'subtitle' => 'SUBTITLE',
  388. 'subton-off' => 'SUBTON/OFF',
  389. 'topmen' => 'TOPMENU',
  390. 'up' => 'UP',
  391. 'vdoff' => 'VDOFF',
  392. 'zoomdn' => 'ZOOMDN',
  393. 'zoomtg' => 'ZOOMTG',
  394. 'zoomup' => 'ZOOMUP'
  395. },
  396. 'CEC' => {
  397. 'off' => '00',
  398. 'on' => '01',
  399. 'up' => 'UP',
  400. 'query' => 'QSTN',
  401. },
  402. 'CEQ' => {
  403. 'power' => 'POWER',
  404. 'preset' => 'PRESET'
  405. },
  406. 'CMD' => {
  407. '1' => '1',
  408. '10-0' => '10/0',
  409. '2' => '2',
  410. '3' => '3',
  411. '4' => '4',
  412. '5' => '5',
  413. '6' => '6',
  414. '7' => '7',
  415. '8' => '8',
  416. '9' => '9',
  417. 'clear' => 'CLEAR',
  418. 'disp' => 'DISP',
  419. 'eject' => 'EJECT',
  420. 'enter' => 'ENTER',
  421. 'ff' => 'FF',
  422. 'group' => 'GROUP',
  423. 'm-scan' => 'M.SCAN',
  424. 'memory' => 'MEMORY',
  425. 'name' => 'NAME',
  426. 'p-mode' => 'P.MODE',
  427. 'pause' => 'PAUSE',
  428. 'play' => 'PLAY',
  429. 'power' => 'POWER',
  430. 'random' => 'RANDOM',
  431. 'rec' => 'REC',
  432. 'repeat' => 'REPEAT',
  433. 'rew' => 'REW',
  434. 'scroll' => 'SCROLL',
  435. 'skip-f' => 'SKIP.F',
  436. 'skip-r' => 'SKIP.R',
  437. 'stby' => 'STBY',
  438. 'stop' => 'STOP'
  439. },
  440. 'CPT' => {
  441. '0' => '0',
  442. '1' => '1',
  443. '10' => '10',
  444. '2' => '2',
  445. '3' => '3',
  446. '4' => '4',
  447. '5' => '5',
  448. '6' => '6',
  449. '7' => '7',
  450. '8' => '8',
  451. '9' => '9',
  452. 'disp' => 'DISP',
  453. 'down' => 'DOWN',
  454. 'enter' => 'ENTER',
  455. 'ff' => 'FF',
  456. 'left' => 'LEFT',
  457. 'mode' => 'MODE',
  458. 'pause' => 'PAUSE',
  459. 'play' => 'PLAY',
  460. 'skip-f' => 'SKIP.F',
  461. 'skip-r' => 'SKIP.R',
  462. 'stop' => 'STOP',
  463. 'up' => 'UP'
  464. },
  465. 'CT1' => {
  466. 'ff' => 'FF',
  467. 'play-f' => 'PLAY.F',
  468. 'play-r' => 'PLAY.R',
  469. 'rc-pa' => 'RC/PAU',
  470. 'rew' => 'REW',
  471. 'stop' => 'STOP'
  472. },
  473. 'CT2' => {
  474. 'ff' => 'FF',
  475. 'op-cl' => 'OP/CL',
  476. 'play-f' => 'PLAY.F',
  477. 'play-r' => 'PLAY.R',
  478. 'rc-pa' => 'RC/PAU',
  479. 'rec' => 'REC',
  480. 'rew' => 'REW',
  481. 'skip-f' => 'SKIP.F',
  482. 'skip-r' => 'SKIP.R',
  483. 'stop' => 'STOP'
  484. },
  485. 'CTL' => {
  486. 'down' => 'DOWN',
  487. 'query' => 'QSTN',
  488. 'up' => 'UP',
  489. 'xrange(-12, 0, 12)' => '(-12, 0, 12)'
  490. },
  491. 'DIF' => {
  492. '02' => '02',
  493. '03' => '03',
  494. 'query' => 'QSTN',
  495. 'listening' => '01',
  496. 'volume' => '00',
  497. 'toggle' => 'TG'
  498. },
  499. 'DIM' => {
  500. 'bright' => '00',
  501. 'bright-led-off' => '08',
  502. 'dark' => '02',
  503. 'dim' => 'DIM',
  504. 'query' => 'QSTN',
  505. 'shut-off' => '03'
  506. },
  507. 'DVL' => {
  508. 'high' => '03',
  509. 'low' => '01',
  510. 'mid' => '02',
  511. 'off' => '00',
  512. 'on' => '01',
  513. 'query' => 'QSTN',
  514. 'up' => 'UP'
  515. },
  516. 'HAO' => {
  517. 'auto' => '02',
  518. 'off' => '00',
  519. 'on' => '01',
  520. 'query' => 'QSTN',
  521. 'up' => 'UP'
  522. },
  523. 'HAT' => {
  524. 'query' => 'QSTN'
  525. },
  526. 'HBL' => {
  527. 'analog' => '01',
  528. 'auto' => '00',
  529. 'query' => 'QSTN'
  530. },
  531. 'HCN' => {
  532. 'query' => 'QSTN'
  533. },
  534. 'HDO' => {
  535. 'analog' => '00',
  536. 'both' => '05',
  537. 'no' => '00',
  538. 'out' => '01',
  539. 'out-sub' => '02',
  540. 'query' => 'QSTN',
  541. 'sub' => '02',
  542. 'up' => 'UP',
  543. 'yes' => '01'
  544. },
  545. 'HDS' => {
  546. 'query' => 'QSTN'
  547. },
  548. 'HPR' => {
  549. 'query' => 'QSTN',
  550. 'xrange(1, 8)' => '(1, 8)'
  551. },
  552. 'HTI' => {
  553. 'query' => 'QSTN'
  554. },
  555. 'HTS' => {
  556. 'mmnnoo' => 'mmnnoo',
  557. 'query' => 'QSTN'
  558. },
  559. 'IAL' => {
  560. 'query' => 'QSTN'
  561. },
  562. 'IAT' => {
  563. 'query' => 'QSTN'
  564. },
  565. 'IFA' => {
  566. 'query' => 'QSTN'
  567. },
  568. 'IFV' => {
  569. 'query' => 'QSTN'
  570. },
  571. 'ILS' => {
  572. 'tlpnnnnnnnnnn' => 'tlpnnnnnnnnnn'
  573. },
  574. 'IMD' => {
  575. 'ext' => 'EXT',
  576. 'query' => 'QSTN',
  577. 'std' => 'STD',
  578. 'vdc' => 'VDC'
  579. },
  580. 'ISF' => {
  581. 'custom' => '00',
  582. 'day' => '01',
  583. 'night' => '02',
  584. 'query' => 'QSTN',
  585. 'up' => 'UP'
  586. },
  587. 'IST' => {
  588. 'prs' => 'prs',
  589. 'query' => 'QSTN'
  590. },
  591. 'ITI' => {
  592. 'query' => 'QSTN'
  593. },
  594. 'ITM' => {
  595. 'mm-ss-mm-ss' => 'mm:ss/mm:ss',
  596. 'query' => 'QSTN'
  597. },
  598. 'ITR' => {
  599. 'cccc-tttt' => 'cccc/tttt',
  600. 'query' => 'QSTN'
  601. },
  602. 'LMD' => {
  603. 'stereo' => '00',
  604. 'direct' => '01',
  605. 'surround' => '02',
  606. 'game-rpg' => '03',
  607. 'thx' => '04',
  608. 'game-action' => '05',
  609. 'game-rock' => '06',
  610. 'mono-movie' => '07',
  611. 'orchestra' => '08',
  612. 'unplugged' => '09',
  613. 'studio-mix' => '0A',
  614. 'tv-logic' => '0B',
  615. 'all-ch-stereo' => '0C',
  616. 'theater-dimensional' => '0D',
  617. 'game-sports' => '0E',
  618. 'mono' => '0F',
  619. 'pure-audio' => '11',
  620. 'multiplex' => '12',
  621. 'full-mono' => '13',
  622. 'dolby-virtual' => '14',
  623. 'dts-surround-sensation' => '15',
  624. 'audyssey-dsx' => '16',
  625. 'whole-house' => '1F',
  626. 'straight-decode' => '40',
  627. 'dolby-ex' => '41',
  628. 'thx-cinema' => '42',
  629. 'thx-surround-ex' => '43',
  630. 'thx-music' => '44',
  631. 'thx-games' => '45',
  632. 'thx-cinema' => '50',
  633. 'thx-musicmode' => '51',
  634. 'thx-games' => '52',
  635. 'pliix-movie' => '80',
  636. 'pliix-music' => '81',
  637. 'neo-x-cinema' => '82',
  638. 'neo-x-music' => '83',
  639. 'pliix-thx-cinema' => '84',
  640. 'neo-x-thx-cinema' => '85',
  641. 'pliix-game' => '86',
  642. 'neural-surr' => '87',
  643. 'neural-thx' => '88',
  644. 'pliix-thx-games' => '89',
  645. 'neo-x-thx-games' => '8A',
  646. 'pliix-thx-music' => '8B',
  647. 'neo-x-thx-music' => '8C',
  648. 'neural-thx-cinema' => '8D',
  649. 'neural-thx-music' => '8E',
  650. 'neural-thx-games' => '8F',
  651. 'pliiz-height' => '90',
  652. 'neo-x-cinema-dts-surround-sensation' => '91',
  653. 'neo-x-music-dts-surround-sensation' => '92',
  654. 'neural-digital-music' => '93',
  655. 'pliiz-height-thx-cinema' => '94',
  656. 'pliiz-height-thx-music' => '95',
  657. 'pliiz-height-thx-games' => '96',
  658. 'pliiz-height-thx-u2-cinema' => '97',
  659. 'pliiz-height-thx-u2-music' => '98',
  660. 'pliiz-height-thx-u2-games' => '99',
  661. 'neo-x-game' => '9A',
  662. 'plii-movie-audyssey-dsx' => 'A0',
  663. 'plii-music-audyssey-dsx' => 'A1',
  664. 'plii-game-audyssey-dsx' => 'A2',
  665. 'neo-x-cinema-audyssey-dsx' => 'A3',
  666. 'neo-x-music-audyssey-dsx' => 'A4',
  667. 'neural-surround-audyssey-dsx' => 'A5',
  668. 'neural-digital-music-audyssey-dsx' => 'A6',
  669. 'dolby-ex-audyssey-dsx' => 'A7',
  670. 'down' => 'DOWN',
  671. 'game' => 'GAME',
  672. 'movie' => 'MOVIE',
  673. 'music' => 'MUSIC',
  674. 'query' => 'QSTN',
  675. 'up' => 'UP',
  676. },
  677. 'LTN' => {
  678. 'auto-dolby-truehd' => '03',
  679. 'high-dolbydigital' => '02',
  680. 'low-dolbydigital' => '01',
  681. 'off' => '00',
  682. 'on-dolby-truehd' => '01',
  683. 'query' => 'QSTN',
  684. 'up' => 'UP'
  685. },
  686. 'MEM' => {
  687. 'lock' => 'LOCK',
  688. 'rcl' => 'RCL',
  689. 'str' => 'STR',
  690. 'unlk' => 'UNLK'
  691. },
  692. 'MOT' => {
  693. 'off' => '00',
  694. 'on' => '01',
  695. 'query' => 'QSTN',
  696. 'up' => 'UP'
  697. },
  698. 'MVL' => {
  699. 'level-down' => 'DOWN',
  700. 'level-down-1db-step' => 'DOWN1',
  701. 'level-up' => 'UP',
  702. 'level-up-1db-step' => 'UP1',
  703. 'query' => 'QSTN',
  704. 'xrange(100)' => '(0, 100)',
  705. 'xrange(80)' => '(0, 80)'
  706. },
  707. 'NAL' => {
  708. 'query' => 'QSTN'
  709. },
  710. 'NAT' => {
  711. 'query' => 'QSTN'
  712. },
  713. 'NDS' => {
  714. 'nfr' => 'nfr',
  715. 'query' => 'QSTN'
  716. },
  717. 'NJA' => {
  718. 'tp-xx-xx-xx-xx-xx-xx' => 'tp{xx}{xx}{xx}{xx}{xx}{xx}',
  719. 'off' => 'DIS',
  720. 'on' => 'ENA',
  721. 'bmp' => 'BMP',
  722. 'link' => 'LINK',
  723. 'up' => 'UP',
  724. 'query' => 'QSTN',
  725. },
  726. 'NKY' => {
  727. 'll' => 'll'
  728. },
  729. 'NLS' => {
  730. 'ti' => 'ti'
  731. },
  732. 'NLA' => {
  733. 'Lzzzzllxxxxyyyy' => 'Lzzzzllxxxxyyyy',
  734. 'Izzzzllxxxx----' => 'Izzzzllxxxx----'
  735. },
  736. 'NMD' => {
  737. 'ext' => 'EXT',
  738. 'query' => 'QSTN',
  739. 'std' => 'STD',
  740. 'vdc' => 'VDC'
  741. },
  742. 'NPR' => {
  743. 'set' => 'SET',
  744. 'xrange(1, 40)' => '(1, 40)'
  745. },
  746. # 'NPU' => {
  747. # '' => ''
  748. # },
  749. 'NSB' => {
  750. 'off' => 'OFF',
  751. 'on' => 'ON',
  752. 'query' => 'QSTN'
  753. },
  754. 'NST' => {
  755. 'prs' => 'prs',
  756. 'query' => 'QSTN'
  757. },
  758. 'NSV' => {
  759. 'DLNA' => '00',
  760. 'My_Favorites' => '01',
  761. 'vTuner' => '02',
  762. 'SiriusXM_Internet_Radio' => '03',
  763. 'Pandora_Internet_Radio' => '04',
  764. 'Rhapsody' => '05',
  765. 'Last.fm_Internet_Radio' => '06',
  766. 'Napster' => '07',
  767. 'Slacker_Personal_Radio' => '08',
  768. 'Mediafly' => '09',
  769. 'Spotify' => '0A',
  770. 'AUPEO!_PERSONAL_RADIO' => '0B',
  771. 'radiko.jp' => '0C',
  772. 'e-onkyo_music' => '0D',
  773. 'TuneIn' => '0E',
  774. 'MP3tunes' => '0F',
  775. 'simfy' => '10',
  776. 'Home_Media' => '11',
  777. },
  778. 'NRI' => {
  779. 'query' => 'QSTN'
  780. },
  781. 'NTC' => {
  782. '0' => '0',
  783. '1' => '1',
  784. '2' => '2',
  785. '3' => '3',
  786. '4' => '4',
  787. '5' => '5',
  788. '6' => '6',
  789. '7' => '7',
  790. '8' => '8',
  791. '9' => '9',
  792. 'album' => 'ALBUM',
  793. 'artist' => 'ARTIST',
  794. 'caps' => 'CAPS',
  795. 'chdn' => 'CHDN',
  796. 'chup' => 'CHUP',
  797. 'delete' => 'DELETE',
  798. 'display' => 'DISPLAY',
  799. 'down' => 'DOWN',
  800. 'ff' => 'FF',
  801. 'genre' => 'GENRE',
  802. 'language' => 'LANGUAGE',
  803. 'left' => 'LEFT',
  804. 'list' => 'LIST',
  805. 'location' => 'LOCATION',
  806. 'men' => 'MENU',
  807. 'mode' => 'MODE',
  808. 'pause' => 'PAUSE',
  809. 'play' => 'PLAY',
  810. 'playlist' => 'PLAYLIST',
  811. 'random' => 'RANDOM',
  812. 'repeat' => 'REPEAT',
  813. 'return' => 'RETURN',
  814. 'rew' => 'REW',
  815. 'right' => 'RIGHT',
  816. 'select' => 'SELECT',
  817. 'setup' => 'SETUP',
  818. 'stop' => 'STOP',
  819. 'top' => 'TOP',
  820. 'trdn' => 'TRDN',
  821. 'trup' => 'TRUP',
  822. 'up' => 'UP'
  823. },
  824. 'NTI' => {
  825. 'query' => 'QSTN'
  826. },
  827. 'NTM' => {
  828. 'mm-ss-mm-ss' => 'mm:ss/mm:ss',
  829. 'query' => 'QSTN'
  830. },
  831. 'NTS' => {
  832. 'mm-ss' => 'mm:ss',
  833. },
  834. 'NTR' => {
  835. 'cccc-tttt' => 'cccc/tttt',
  836. 'query' => 'QSTN'
  837. },
  838. 'OSD' => {
  839. 'audio' => 'AUDIO',
  840. 'down' => 'DOWN',
  841. 'enter' => 'ENTER',
  842. 'exit' => 'EXIT',
  843. 'home' => 'HOME',
  844. 'left' => 'LEFT',
  845. 'men' => 'MENU',
  846. 'right' => 'RIGHT',
  847. 'up' => 'UP',
  848. 'video' => 'VIDEO'
  849. },
  850. 'PRS' => {
  851. 'xrange(1, 40)' => '(1, 40)',
  852. 'xrange(1, 30)' => '(1, 30)',
  853. 'up' => 'UP',
  854. 'down' => 'DOWN',
  855. 'query' => 'QSTN',
  856. },
  857. 'PRM' => {
  858. 'xrange(1, 40)' => '(1, 40)',
  859. 'xrange(1, 30)' => '(1, 30)'
  860. },
  861. 'PTS' => {
  862. 'enter' => 'ENTER',
  863. 'xrange(30)' => '(0, 30)'
  864. },
  865. 'PMB' => {
  866. 'off' => '00',
  867. 'on' => '01',
  868. 'toggle' => 'TG',
  869. 'query' => 'QSTN'
  870. },
  871. 'PWR' => {
  872. 'off' => '00',
  873. 'on' => '01',
  874. 'query' => 'QSTN'
  875. },
  876. 'RAS' => {
  877. 'off' => '00',
  878. 'on' => '01',
  879. 'query' => 'QSTN',
  880. 'up' => 'UP'
  881. },
  882. 'RDS' => {
  883. '00' => '00',
  884. '01' => '01',
  885. '02' => '02',
  886. 'up' => 'UP'
  887. },
  888. 'RES' => {
  889. '1080i' => '04',
  890. '1080p' => '07',
  891. '24fs' => '07',
  892. '480p' => '02',
  893. '4k-upcaling' => '08',
  894. '720p' => '03',
  895. 'auto' => '01',
  896. 'query' => 'QSTN',
  897. 'source' => '06',
  898. 'through' => '00',
  899. 'up' => 'UP'
  900. },
  901. 'SAT' => {
  902. 'query' => 'QSTN'
  903. },
  904. 'SCH' => {
  905. 'down' => 'DOWN',
  906. 'query' => 'QSTN',
  907. 'up' => 'UP',
  908. 'xrange(597)' => '(0, 597)'
  909. },
  910. 'SCN' => {
  911. 'query' => 'QSTN'
  912. },
  913. 'SCT' => {
  914. 'down' => 'DOWN',
  915. 'query' => 'QSTN',
  916. 'up' => 'UP'
  917. },
  918. 'SLA' => {
  919. 'analog' => '02',
  920. 'arc' => '07',
  921. 'auto' => '00',
  922. 'balance' => '06',
  923. 'coax' => '05',
  924. 'hdmi' => '04',
  925. 'ilink' => '03',
  926. 'multi-channel' => '01',
  927. 'opt' => '05',
  928. 'query' => 'QSTN',
  929. 'up' => 'UP'
  930. },
  931. 'SLC' => {
  932. 'chsel' => 'CHSEL',
  933. 'down' => 'DOWN',
  934. 'test' => 'TEST',
  935. 'up' => 'UP'
  936. },
  937. 'SLI' => {
  938. '07' => '07',
  939. '08' => '08',
  940. '09' => '09',
  941. 'am' => '25',
  942. 'aux1' => '03',
  943. 'aux2' => '04',
  944. 'bd' => '10',
  945. 'cbl' => '01',
  946. 'cd' => '23',
  947. 'dlna' => '27',
  948. 'down' => 'DOWN',
  949. 'dvd' => '10',
  950. 'dvr' => '00',
  951. 'fm' => '24',
  952. 'game' => '02',
  953. 'internet-radio' => '28',
  954. 'iradio-favorite' => '28',
  955. 'multi-ch' => '30',
  956. 'music-server' => '27',
  957. 'net' => '2B',
  958. 'network' => '2B',
  959. 'p4s' => '27',
  960. 'pc' => '05',
  961. 'phono' => '22',
  962. 'query' => 'QSTN',
  963. 'sat' => '01',
  964. 'sirius' => '32',
  965. 'tape' => '20',
  966. 'tape-1' => '20',
  967. 'tape2' => '21',
  968. 'tuner' => '26',
  969. 'tv' => '23',
  970. 'tv-cd' => '23',
  971. 'universal-port' => '40',
  972. 'up' => 'UP',
  973. 'usb' => '29',
  974. 'usb-rear' => '2A',
  975. 'usb-toggle' => '2C',
  976. 'vcr' => '00',
  977. 'video1' => '00',
  978. 'video2' => '01',
  979. 'video3' => '02',
  980. 'video4' => '03',
  981. 'video5' => '04',
  982. 'video6' => '05',
  983. 'video7' => '06',
  984. 'xm' => '31'
  985. },
  986. 'SLK' => {
  987. 'input' => 'INPUT',
  988. 'wrong' => 'WRONG'
  989. },
  990. 'SLP' => {
  991. 'query' => 'QSTN',
  992. 'off' => 'OFF',
  993. 'up' => 'UP',
  994. 'xrange(1, 90)' => '(1, 90)'
  995. },
  996. 'SLR' => {
  997. 'am' => '25',
  998. 'cd' => '23',
  999. 'dvd' => '10',
  1000. 'fm' => '24',
  1001. 'internet-radio' => '28',
  1002. 'multi-ch' => '30',
  1003. 'music-server' => '27',
  1004. 'off' => '7F',
  1005. 'phono' => '22',
  1006. 'query' => 'QSTN',
  1007. 'source' => '80',
  1008. 'tape' => '20',
  1009. 'tape2' => '21',
  1010. 'tuner' => '26',
  1011. 'video1' => '00',
  1012. 'video2' => '01',
  1013. 'video3' => '02',
  1014. 'video4' => '03',
  1015. 'video5' => '04',
  1016. 'video6' => '05',
  1017. 'video7' => '06',
  1018. 'xm' => '31'
  1019. },
  1020. 'SPA' => {
  1021. 'off' => '00',
  1022. 'on' => '01',
  1023. 'query' => 'QSTN',
  1024. 'up' => 'UP'
  1025. },
  1026. 'SPB' => {
  1027. 'off' => '00',
  1028. 'on' => '01',
  1029. 'query' => 'QSTN',
  1030. 'up' => 'UP'
  1031. },
  1032. 'SPL' => {
  1033. 'front-high' => 'FH',
  1034. 'front-high-front-wide-speakers' => 'HW',
  1035. 'front-wide' => 'FW',
  1036. 'query' => 'QSTN',
  1037. 'surrback' => 'SB',
  1038. 'surrback-front-high-speakers' => 'FH',
  1039. 'surrback-front-wide-speakers' => 'FW',
  1040. 'up' => 'UP'
  1041. },
  1042. 'STI' => {
  1043. 'query' => 'QSTN'
  1044. },
  1045. 'SWL' => {
  1046. 'down' => 'DOWN',
  1047. 'query' => 'QSTN',
  1048. 'up' => 'UP',
  1049. 'xrange(-15, 9, 12)' => '(-15, 0, 12)'
  1050. },
  1051. 'SW2' => {
  1052. 'down' => 'DOWN',
  1053. 'query' => 'QSTN',
  1054. 'up' => 'UP',
  1055. 'xrange(-15, 9, 12)' => '(-15, 0, 12)'
  1056. },
  1057. 'TCT' => {
  1058. 'b-xx' => 'B{xx}',
  1059. 'bass-down' => 'BDOWN',
  1060. 'bass-up' => 'BUP',
  1061. 'query' => 'QSTN',
  1062. 't-xx' => 'T{xx}',
  1063. 'treble-down' => 'TDOWN',
  1064. 'treble-up' => 'TUP'
  1065. },
  1066. 'TFH' => {
  1067. 'b-xx' => 'B{xx}',
  1068. 'bass-down' => 'BDOWN',
  1069. 'bass-up' => 'BUP',
  1070. 'query' => 'QSTN',
  1071. 't-xx' => 'T{xx}',
  1072. 'treble-down' => 'TDOWN',
  1073. 'treble-up' => 'TUP'
  1074. },
  1075. 'TFR' => {
  1076. 'b-xx' => 'B{xx}',
  1077. 'bass-down' => 'BDOWN',
  1078. 'bass-up' => 'BUP',
  1079. 'query' => 'QSTN',
  1080. 't-xx' => 'T{xx}',
  1081. 'treble-down' => 'TDOWN',
  1082. 'treble-up' => 'TUP'
  1083. },
  1084. 'TFW' => {
  1085. 'b-xx' => 'B{xx}',
  1086. 'bass-down' => 'BDOWN',
  1087. 'bass-up' => 'BUP',
  1088. 'query' => 'QSTN',
  1089. 't-xx' => 'T{xx}',
  1090. 'treble-down' => 'TDOWN',
  1091. 'treble-up' => 'TUP'
  1092. },
  1093. 'TGA' => {
  1094. 'off' => '00',
  1095. 'on' => '01'
  1096. },
  1097. 'TGB' => {
  1098. 'off' => '00',
  1099. 'on' => '01'
  1100. },
  1101. 'TGC' => {
  1102. 'off' => '00',
  1103. 'on' => '01'
  1104. },
  1105. 'TPS' => {
  1106. 'enter' => 'ENTER'
  1107. },
  1108. 'TSB' => {
  1109. 'b-xx' => 'B{xx}',
  1110. 'bass-down' => 'BDOWN',
  1111. 'bass-up' => 'BUP',
  1112. 'query' => 'QSTN',
  1113. 't-xx' => 'T{xx}',
  1114. 'treble-down' => 'TDOWN',
  1115. 'treble-up' => 'TUP'
  1116. },
  1117. 'TSR' => {
  1118. 'b-xx' => 'B{xx}',
  1119. 'bass-down' => 'BDOWN',
  1120. 'bass-up' => 'BUP',
  1121. 'query' => 'QSTN',
  1122. 't-xx' => 'T{xx}',
  1123. 'treble-down' => 'TDOWN',
  1124. 'treble-up' => 'TUP'
  1125. },
  1126. 'TSW' => {
  1127. 'b-xx' => 'B{xx}',
  1128. 'bass-down' => 'BDOWN',
  1129. 'bass-up' => 'BUP',
  1130. 'query' => 'QSTN'
  1131. },
  1132. 'TUN' => {
  1133. '0-in-direct-mode' => '0',
  1134. '1-in-direct-mode' => '1',
  1135. '2-in-direct-mode' => '2',
  1136. '3-in-direct-mode' => '3',
  1137. '4-in-direct-mode' => '4',
  1138. '5-in-direct-mode' => '5',
  1139. '6-in-direct-mode' => '6',
  1140. '7-in-direct-mode' => '7',
  1141. '8-in-direct-mode' => '8',
  1142. '9-in-direct-mode' => '9',
  1143. 'direct' => 'DIRECT',
  1144. 'down' => 'DOWN',
  1145. 'query' => 'QSTN',
  1146. 'up' => 'UP'
  1147. },
  1148. 'UDD' => {
  1149. 'at' => 'AT',
  1150. 'mf' => 'MF',
  1151. 'mn' => 'MN',
  1152. 'pt' => 'PT',
  1153. 'up' => 'UP'
  1154. },
  1155. 'UDS' => {
  1156. 'query' => 'QSTN'
  1157. },
  1158. 'UHA' => {
  1159. 'query' => 'QSTN'
  1160. },
  1161. 'UHB' => {
  1162. 'analog' => '01',
  1163. 'auto' => '00',
  1164. 'query' => 'QSTN'
  1165. },
  1166. 'UHC' => {
  1167. 'query' => 'QSTN'
  1168. },
  1169. 'UHD' => {
  1170. 'query' => 'QSTN'
  1171. },
  1172. 'UHP' => {
  1173. 'query' => 'QSTN',
  1174. 'xrange(1, 8)' => '(1, 8)'
  1175. },
  1176. 'UHS' => {
  1177. 'mmnnoo' => 'mmnnoo',
  1178. 'query' => 'QSTN'
  1179. },
  1180. 'UHT' => {
  1181. 'query' => 'QSTN'
  1182. },
  1183. 'UPM' => {
  1184. 'xrange(1, 40)' => '(1, 40)'
  1185. },
  1186. 'UPR' => {
  1187. 'down' => 'DOWN',
  1188. 'query' => 'QSTN',
  1189. 'up' => 'UP',
  1190. 'xrange(1, 40)' => '(1, 40)'
  1191. },
  1192. 'UTN' => {
  1193. 'down' => 'DOWN',
  1194. 'query' => 'QSTN',
  1195. 'up' => 'UP'
  1196. },
  1197. 'VOS' => {
  1198. 'component' => '01',
  1199. 'd4' => '00',
  1200. 'query' => 'QSTN'
  1201. },
  1202. 'VPM' => {
  1203. 'cinema' => '02',
  1204. 'custom' => '01',
  1205. 'direct' => '08',
  1206. 'game' => '03',
  1207. 'isf-day' => '05',
  1208. 'isf-night' => '06',
  1209. 'query' => 'QSTN',
  1210. 'streaming' => '07',
  1211. 'through' => '00',
  1212. 'up' => 'UP'
  1213. },
  1214. 'VWM' => {
  1215. '4-3' => '01',
  1216. 'auto' => '00',
  1217. 'full' => '02',
  1218. 'query' => 'QSTN',
  1219. 'smart-zoom' => '05',
  1220. 'up' => 'UP',
  1221. 'zoom' => '04'
  1222. },
  1223. 'XAT' => {
  1224. 'query' => 'QSTN'
  1225. },
  1226. 'XCH' => {
  1227. 'down' => 'DOWN',
  1228. 'query' => 'QSTN',
  1229. 'up' => 'UP',
  1230. 'xrange(597)' => '(0, 597)'
  1231. },
  1232. 'XCN' => {
  1233. 'query' => 'QSTN'
  1234. },
  1235. 'XCT' => {
  1236. 'down' => 'DOWN',
  1237. 'query' => 'QSTN',
  1238. 'up' => 'UP'
  1239. },
  1240. 'XTI' => {
  1241. 'query' => 'QSTN'
  1242. }
  1243. },
  1244. '2' => {
  1245. 'LMZ' => {
  1246. 'direct' => '01',
  1247. 'dvs' => '88',
  1248. 'mono' => '0F',
  1249. 'multiplex' => '12',
  1250. 'stereo' => '00'
  1251. },
  1252. 'LTZ' => {
  1253. 'high' => '02',
  1254. 'low' => '01',
  1255. 'off' => '00',
  1256. 'query' => 'QSTN',
  1257. 'up' => 'UP'
  1258. },
  1259. 'NPZ' => {
  1260. 'xrange(1, 40)' => '(1, 40)'
  1261. },
  1262. 'NTC' => {
  1263. 'pausez' => 'PAUSEz',
  1264. 'playz' => 'PLAYz',
  1265. 'stopz' => 'STOPz',
  1266. 'trdnz' => 'TRDNz',
  1267. 'trupz' => 'TRUPz'
  1268. },
  1269. 'NTZ' => {
  1270. 'chdn' => 'CHDN',
  1271. 'chup' => 'CHUP',
  1272. 'display' => 'DISPLAY',
  1273. 'down' => 'DOWN',
  1274. 'ff' => 'FF',
  1275. 'left' => 'LEFT',
  1276. 'pause' => 'PAUSE',
  1277. 'play' => 'PLAY',
  1278. 'random' => 'RANDOM',
  1279. 'repeat' => 'REPEAT',
  1280. 'return' => 'RETURN',
  1281. 'rew' => 'REW',
  1282. 'right' => 'RIGHT',
  1283. 'select' => 'SELECT',
  1284. 'stop' => 'STOP',
  1285. 'trdn' => 'TRDN',
  1286. 'trup' => 'TRUP',
  1287. 'up' => 'UP'
  1288. },
  1289. 'PRZ' => {
  1290. 'down' => 'DOWN',
  1291. 'query' => 'QSTN',
  1292. 'up' => 'UP',
  1293. 'xrange(1, 40)' => '(1, 40)',
  1294. 'xrange(1, 30)' => '(1, 30)'
  1295. },
  1296. 'RAZ' => {
  1297. 'both-off' => '00',
  1298. 'on' => '02',
  1299. 'query' => 'QSTN',
  1300. 'up' => 'UP'
  1301. },
  1302. 'SLZ' => {
  1303. 'am' => '25',
  1304. 'aux1' => '03',
  1305. 'aux2' => '04',
  1306. 'bd' => '10',
  1307. 'cbl' => '01',
  1308. 'cd' => '23',
  1309. 'dlna' => '27',
  1310. 'down' => 'DOWN',
  1311. 'dvd' => '10',
  1312. 'dvr' => '00',
  1313. 'fm' => '24',
  1314. 'game' => '02',
  1315. 'hidden1' => '07',
  1316. 'hidden2' => '08',
  1317. 'hidden3' => '09',
  1318. 'internet-radio' => '28',
  1319. 'iradio-favorite' => '28',
  1320. 'multi-ch' => '30',
  1321. 'music-server' => '27',
  1322. 'net' => '2B',
  1323. 'network' => '2B',
  1324. 'off' => '7F',
  1325. 'p4s' => '27',
  1326. 'pc' => '05',
  1327. 'phono' => '22',
  1328. 'query' => 'QSTN',
  1329. 'sat' => '01',
  1330. 'sirius' => '32',
  1331. 'source' => '80',
  1332. 'tape' => '20',
  1333. 'tape2' => '21',
  1334. 'tuner' => '26',
  1335. 'tv' => '23',
  1336. 'tv-cd' => '23',
  1337. 'universal-port' => '40',
  1338. 'up' => 'UP',
  1339. 'usb' => '29',
  1340. 'usb-rear' => '2A',
  1341. 'usb-toggle' => '2C',
  1342. 'vcr' => '00',
  1343. 'video1' => '00',
  1344. 'video2' => '01',
  1345. 'video3' => '02',
  1346. 'video4' => '03',
  1347. 'video5' => '04',
  1348. 'video6' => '05',
  1349. 'video7' => '06',
  1350. 'xm' => '31'
  1351. },
  1352. 'TUZ' => {
  1353. '0-in-direct-mode' => '0',
  1354. '1-in-direct-mode' => '1',
  1355. '2-in-direct-mode' => '2',
  1356. '3-in-direct-mode' => '3',
  1357. '4-in-direct-mode' => '4',
  1358. '5-in-direct-mode' => '5',
  1359. '6-in-direct-mode' => '6',
  1360. '7-in-direct-mode' => '7',
  1361. '8-in-direct-mode' => '8',
  1362. '9-in-direct-mode' => '9',
  1363. 'direct' => 'DIRECT',
  1364. 'down' => 'DOWN',
  1365. 'query' => 'QSTN',
  1366. 'up' => 'UP'
  1367. },
  1368. 'ZBL' => {
  1369. 'down' => 'DOWN',
  1370. 'query' => 'QSTN',
  1371. 'up' => 'UP',
  1372. 'xx-is-a-00-a-l-10-0-r-10-2-step' => '{xx}'
  1373. },
  1374. 'ZMT' => {
  1375. 'off' => '00',
  1376. 'on' => '01',
  1377. 'query' => 'QSTN',
  1378. 'toggle' => 'TG'
  1379. },
  1380. 'ZPW' => {
  1381. 'off' => '00',
  1382. 'on' => '01',
  1383. 'query' => 'QSTN',
  1384. },
  1385. 'ZTN' => {
  1386. 'bass-down' => 'BDOWN',
  1387. 'bass-up' => 'BUP',
  1388. 'bass-xx-is-a-00-a-10-0-10-2-step' => 'B{xx}',
  1389. 'query' => 'QSTN',
  1390. 'treble-down' => 'TDOWN',
  1391. 'treble-up' => 'TUP',
  1392. 'treble-xx-is-a-00-a-10-0-10-2-step' => 'T{xx}'
  1393. },
  1394. 'ZVL' => {
  1395. 'level-down' => 'DOWN',
  1396. 'level-up' => 'UP',
  1397. 'query' => 'QSTN',
  1398. 'xrange(100)' => '(0, 100)',
  1399. 'xrange(80)' => '(0, 80)'
  1400. }
  1401. },
  1402. '3' => {
  1403. 'BL3' => {
  1404. 'down' => 'DOWN',
  1405. 'query' => 'QSTN',
  1406. 'up' => 'UP',
  1407. 'xx' => '{xx}'
  1408. },
  1409. 'MT3' => {
  1410. 'off' => '00',
  1411. 'on' => '01',
  1412. 'query' => 'QSTN',
  1413. 'toggle' => 'TG'
  1414. },
  1415. 'NP3' => {
  1416. 'xrange(1, 40)' => '(1, 40)'
  1417. },
  1418. 'NT3' => {
  1419. 'chdn' => 'CHDN',
  1420. 'chup' => 'CHUP',
  1421. 'display' => 'DISPLAY',
  1422. 'down' => 'DOWN',
  1423. 'ff' => 'FF',
  1424. 'left' => 'LEFT',
  1425. 'pause' => 'PAUSE',
  1426. 'play' => 'PLAY',
  1427. 'random' => 'RANDOM',
  1428. 'repeat' => 'REPEAT',
  1429. 'return' => 'RETURN',
  1430. 'rew' => 'REW',
  1431. 'right' => 'RIGHT',
  1432. 'select' => 'SELECT',
  1433. 'stop' => 'STOP',
  1434. 'trdn' => 'TRDN',
  1435. 'trup' => 'TRUP',
  1436. 'up' => 'UP'
  1437. },
  1438. 'NTC' => {
  1439. 'pausez' => 'PAUSEz',
  1440. 'playz' => 'PLAYz',
  1441. 'stopz' => 'STOPz',
  1442. 'trdnz' => 'TRDNz',
  1443. 'trupz' => 'TRUPz'
  1444. },
  1445. 'PR3' => {
  1446. 'down' => 'DOWN',
  1447. 'query' => 'QSTN',
  1448. 'up' => 'UP',
  1449. 'xrange(1, 40)' => '(1, 40)',
  1450. 'xrange(1, 30)' => '(1, 30)'
  1451. },
  1452. 'PW3' => {
  1453. 'off' => '00',
  1454. 'on' => '01',
  1455. 'query' => 'QSTN',
  1456. },
  1457. 'SL3' => {
  1458. 'am' => '25',
  1459. 'aux1' => '03',
  1460. 'aux2' => '04',
  1461. 'cbl' => '01',
  1462. 'cd' => '23',
  1463. 'dlna' => '27',
  1464. 'down' => 'DOWN',
  1465. 'dvd' => '10',
  1466. 'dvr' => '00',
  1467. 'fm' => '24',
  1468. 'game' => '02',
  1469. 'hidden1' => '07',
  1470. 'hidden2' => '08',
  1471. 'hidden3' => '09',
  1472. 'internet-radio' => '28',
  1473. 'iradio-favorite' => '28',
  1474. 'multi-ch' => '30',
  1475. 'music-server' => '27',
  1476. 'net' => '2B',
  1477. 'network' => '2B',
  1478. 'p4s' => '27',
  1479. 'pc' => '05',
  1480. 'phono' => '22',
  1481. 'query' => 'QSTN',
  1482. 'sat' => '01',
  1483. 'sirius' => '32',
  1484. 'source' => '80',
  1485. 'tape' => '20',
  1486. 'tape2' => '21',
  1487. 'tuner' => '26',
  1488. 'tv' => '23',
  1489. 'tv-cd' => '23',
  1490. 'universal-port' => '40',
  1491. 'up' => 'UP',
  1492. 'usb' => '29',
  1493. 'usb-rear' => '2A',
  1494. 'usb-toggle' => '2C',
  1495. 'vcr' => '00',
  1496. 'video1' => '00',
  1497. 'video2' => '01',
  1498. 'video3' => '02',
  1499. 'video4' => '03',
  1500. 'video5' => '04',
  1501. 'video6' => '05',
  1502. 'video7' => '06',
  1503. 'xm' => '31'
  1504. },
  1505. 'TN3' => {
  1506. 'b-xx' => 'B{xx}',
  1507. 'bass-down' => 'BDOWN',
  1508. 'bass-up' => 'BUP',
  1509. 'query' => 'QSTN',
  1510. 't-xx' => 'T{xx}',
  1511. 'treble-down' => 'TDOWN',
  1512. 'treble-up' => 'TUP'
  1513. },
  1514. 'TU3' => {
  1515. '0-in-direct-mode' => '0',
  1516. '1-in-direct-mode' => '1',
  1517. '2-in-direct-mode' => '2',
  1518. '3-in-direct-mode' => '3',
  1519. '4-in-direct-mode' => '4',
  1520. '5-in-direct-mode' => '5',
  1521. '6-in-direct-mode' => '6',
  1522. '7-in-direct-mode' => '7',
  1523. '8-in-direct-mode' => '8',
  1524. '9-in-direct-mode' => '9',
  1525. 'direct' => 'DIRECT',
  1526. 'down' => 'DOWN',
  1527. 'query' => 'QSTN',
  1528. 'up' => 'UP'
  1529. },
  1530. 'VL3' => {
  1531. 'level-down' => 'DOWN',
  1532. 'level-up' => 'UP',
  1533. 'query' => 'QSTN',
  1534. 'xrange(100)' => '(0, 100)',
  1535. 'xrange(80)' => '(0, 80)'
  1536. }
  1537. },
  1538. '4' => {
  1539. 'MT4' => {
  1540. 'off' => '00',
  1541. 'on' => '01',
  1542. 'query' => 'QSTN',
  1543. 'toggle' => 'TG'
  1544. },
  1545. 'NP4' => {
  1546. 'xrange(1, 40)' => '(1, 40)'
  1547. },
  1548. 'NT4' => {
  1549. 'display' => 'DISPLAY',
  1550. 'down' => 'DOWN',
  1551. 'ff' => 'FF',
  1552. 'left' => 'LEFT',
  1553. 'pause' => 'PAUSE',
  1554. 'play' => 'PLAY',
  1555. 'random' => 'RANDOM',
  1556. 'repeat' => 'REPEAT',
  1557. 'return' => 'RETURN',
  1558. 'rew' => 'REW',
  1559. 'right' => 'RIGHT',
  1560. 'select' => 'SELECT',
  1561. 'stop' => 'STOP',
  1562. 'trdn' => 'TRDN',
  1563. 'trup' => 'TRUP',
  1564. 'up' => 'UP'
  1565. },
  1566. 'NTC' => {
  1567. 'pausez' => 'PAUSEz',
  1568. 'playz' => 'PLAYz',
  1569. 'stopz' => 'STOPz',
  1570. 'trdnz' => 'TRDNz',
  1571. 'trupz' => 'TRUPz'
  1572. },
  1573. 'PR4' => {
  1574. 'down' => 'DOWN',
  1575. 'query' => 'QSTN',
  1576. 'up' => 'UP',
  1577. 'xrange(1, 40)' => '(1, 40)',
  1578. 'xrange(1, 30)' => '(1, 30)'
  1579. },
  1580. 'PW4' => {
  1581. 'off' => '00',
  1582. 'on' => '01',
  1583. 'query' => 'QSTN',
  1584. },
  1585. 'SL4' => {
  1586. 'am' => '25',
  1587. 'aux1' => '03',
  1588. 'aux2' => '04',
  1589. 'cbl' => '01',
  1590. 'cd' => '23',
  1591. 'dlna' => '27',
  1592. 'down' => 'DOWN',
  1593. 'dvd' => '10',
  1594. 'dvr' => '00',
  1595. 'fm' => '24',
  1596. 'game' => '02',
  1597. 'hidden1' => '07',
  1598. 'hidden2' => '08',
  1599. 'hidden3' => '09',
  1600. 'internet-radio' => '28',
  1601. 'iradio-favorite' => '28',
  1602. 'multi-ch' => '30',
  1603. 'music-server' => '27',
  1604. 'net' => '2B',
  1605. 'network' => '2B',
  1606. 'p4s' => '27',
  1607. 'phono' => '22',
  1608. 'query' => 'QSTN',
  1609. 'sat' => '01',
  1610. 'sirius' => '32',
  1611. 'source' => '80',
  1612. 'tape' => '20',
  1613. 'tape-1' => '20',
  1614. 'tape2' => '21',
  1615. 'tuner' => '26',
  1616. 'tv' => '23',
  1617. 'tv-cd' => '23',
  1618. 'universal-port' => '40',
  1619. 'up' => 'UP',
  1620. 'usb' => '29',
  1621. 'usb-rear' => '2A',
  1622. 'usb-toggle' => '2C',
  1623. 'vcr' => '00',
  1624. 'video1' => '00',
  1625. 'video2' => '01',
  1626. 'video3' => '02',
  1627. 'video4' => '03',
  1628. 'video5' => '04',
  1629. 'video6' => '05',
  1630. 'video7' => '06',
  1631. 'xm' => '31'
  1632. },
  1633. 'TU4' => {
  1634. '0-in-direct-mode' => '0',
  1635. '1-in-direct-mode' => '1',
  1636. '2-in-direct-mode' => '2',
  1637. '3-in-direct-mode' => '3',
  1638. '4-in-direct-mode' => '4',
  1639. '5-in-direct-mode' => '5',
  1640. '6-in-direct-mode' => '6',
  1641. '7-in-direct-mode' => '7',
  1642. '8-in-direct-mode' => '8',
  1643. '9-in-direct-mode' => '9',
  1644. 'direct' => 'DIRECT',
  1645. 'down' => 'DOWN',
  1646. 'query' => 'QSTN',
  1647. 'up' => 'UP'
  1648. },
  1649. 'VL4' => {
  1650. 'level-down' => 'DOWN',
  1651. 'level-up' => 'UP',
  1652. 'query' => 'QSTN',
  1653. 'xrange(100)' => '(0, 100)',
  1654. 'xrange(80)' => '(0, 80)'
  1655. }
  1656. }
  1657. };
  1658. # ----------------Complete command reference database-----------------------
  1659. my $ONKYO_cmddb = {
  1660. '1' => {
  1661. 'PMB',
  1662. {
  1663. 'description' => 'Phase Matching Bass Command',
  1664. 'name' => 'phase-matching-bass',
  1665. 'values' => {
  1666. '00',
  1667. {
  1668. 'description' => 'sets Off',
  1669. 'name' => 'off'
  1670. },
  1671. '01',
  1672. {
  1673. 'description' => 'sets On',
  1674. 'name' => 'on'
  1675. },
  1676. 'TG',
  1677. {
  1678. 'description' => 'sets Phase Matching Bass Wrap-Around Up',
  1679. 'name' => 'toggle'
  1680. },
  1681. 'QSTN',
  1682. {
  1683. 'description' => 'gets Phase Matching Bass',
  1684. 'name' => 'query'
  1685. }
  1686. }
  1687. },
  1688. 'PWR',
  1689. {
  1690. 'description' => 'System Power Command',
  1691. 'name' => 'power',
  1692. 'values' => {
  1693. '00',
  1694. {
  1695. 'description' => 'sets System Standby',
  1696. 'name' => 'off'
  1697. },
  1698. '01',
  1699. {
  1700. 'description' => 'sets System On',
  1701. 'name' => 'on'
  1702. },
  1703. 'QSTN',
  1704. {
  1705. 'description' => 'gets the System Power Status',
  1706. 'name' => 'query'
  1707. }
  1708. }
  1709. },
  1710. 'AMT',
  1711. {
  1712. 'description' => 'Audio Muting Command',
  1713. 'name' => 'mute',
  1714. 'values' => {
  1715. '00',
  1716. {
  1717. 'description' => 'sets Audio Muting Off',
  1718. 'name' => 'off'
  1719. },
  1720. '01',
  1721. {
  1722. 'description' => 'sets Audio Muting On',
  1723. 'name' => 'on'
  1724. },
  1725. 'TG',
  1726. {
  1727. 'description' => 'sets Audio Muting Wrap-Around',
  1728. 'name' => 'toggle'
  1729. },
  1730. 'QSTN',
  1731. {
  1732. 'description' => 'gets the Audio Muting State',
  1733. 'name' => 'query'
  1734. }
  1735. }
  1736. },
  1737. 'SPA',
  1738. {
  1739. 'description' => 'Speaker A Command',
  1740. 'name' => 'speaker-a',
  1741. 'values' => {
  1742. '00',
  1743. {
  1744. 'description' => 'sets Speaker Off',
  1745. 'name' => 'off'
  1746. },
  1747. '01',
  1748. { 'description' => 'sets Speaker On', 'name' => 'on' },
  1749. 'UP',
  1750. {
  1751. 'description' => 'sets Speaker Switch Wrap-Around',
  1752. 'name' => 'up'
  1753. },
  1754. 'QSTN',
  1755. {
  1756. 'description' => 'gets the Speaker State',
  1757. 'name' => 'query'
  1758. }
  1759. }
  1760. },
  1761. 'SPB',
  1762. {
  1763. 'description' => 'Speaker B Command',
  1764. 'name' => 'speaker-b',
  1765. 'values' => {
  1766. '00',
  1767. {
  1768. 'description' => 'sets Speaker Off',
  1769. 'name' => 'off'
  1770. },
  1771. '01',
  1772. { 'description' => 'sets Speaker On', 'name' => 'on' },
  1773. 'UP',
  1774. {
  1775. 'description' => 'sets Speaker Switch Wrap-Around',
  1776. 'name' => 'up'
  1777. },
  1778. 'QSTN',
  1779. {
  1780. 'description' => 'gets the Speaker State',
  1781. 'name' => 'query'
  1782. }
  1783. }
  1784. },
  1785. 'SPL',
  1786. {
  1787. 'description' => 'Speaker Layout Command',
  1788. 'name' => 'speaker-layout',
  1789. 'values' => {
  1790. 'SB',
  1791. {
  1792. 'description' => 'sets SurrBack Speaker',
  1793. 'name' => 'surrback'
  1794. },
  1795. 'FH',
  1796. {
  1797. 'description' =>
  1798. 'sets Front High Speaker / SurrBack+Front High Speakers',
  1799. 'name' => { 'front-high', 'surrback-front-high-speakers' }
  1800. },
  1801. 'FW',
  1802. {
  1803. 'description' =>
  1804. 'sets Front Wide Speaker / SurrBack+Front Wide Speakers',
  1805. 'name' => { 'front-wide', 'surrback-front-wide-speakers' }
  1806. },
  1807. 'HW',
  1808. {
  1809. 'description' => 'sets, Front High+Front Wide Speakers',
  1810. 'name' => ['front-high-front-wide-speakers']
  1811. },
  1812. 'UP',
  1813. {
  1814. 'description' => 'sets Speaker Switch Wrap-Around',
  1815. 'name' => 'up'
  1816. },
  1817. 'QSTN',
  1818. {
  1819. 'description' => 'gets the Speaker State',
  1820. 'name' => 'query'
  1821. }
  1822. }
  1823. },
  1824. 'MVL',
  1825. {
  1826. 'description' => 'Master Volume Command',
  1827. 'name' => 'volume',
  1828. 'values' => {
  1829. '{0,100}',
  1830. {
  1831. 'description' =>
  1832. 'Volume Level 0 100 { In hexadecimal representation}',
  1833. 'name' => 'None'
  1834. },
  1835. '{0,80}',
  1836. {
  1837. 'description' =>
  1838. 'Volume Level 0 80 { In hexadecimal representation}',
  1839. 'name' => 'None'
  1840. },
  1841. 'UP',
  1842. {
  1843. 'description' => 'sets Volume Level Up',
  1844. 'name' => 'level-up'
  1845. },
  1846. 'DOWN',
  1847. {
  1848. 'description' => 'sets Volume Level Down',
  1849. 'name' => 'level-down'
  1850. },
  1851. 'UP1',
  1852. {
  1853. 'description' => 'sets Volume Level Up 1dB Step',
  1854. 'name' => 'level-up-1db-step'
  1855. },
  1856. 'DOWN1',
  1857. {
  1858. 'description' => 'sets Volume Level Down 1dB Step',
  1859. 'name' => 'level-down-1db-step'
  1860. },
  1861. 'QSTN',
  1862. {
  1863. 'description' => 'gets the Volume Level',
  1864. 'name' => 'query'
  1865. }
  1866. }
  1867. },
  1868. 'TFR',
  1869. {
  1870. 'description' => 'Tone{Front} Command',
  1871. 'name' => 'tone-front',
  1872. 'values' => {
  1873. 'B{xx}',
  1874. {
  1875. 'description' =>
  1876. 'Front Bass {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  1877. 'name' => 'b-xx'
  1878. },
  1879. 'T{xx}',
  1880. {
  1881. 'description' =>
  1882. 'Front Treble {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  1883. 'name' => 't-xx'
  1884. },
  1885. 'BUP',
  1886. {
  1887. 'description' => 'sets Front Bass up{2 step}',
  1888. 'name' => 'bass-up'
  1889. },
  1890. 'BDOWN',
  1891. {
  1892. 'description' => 'sets Front Bass down{2 step}',
  1893. 'name' => 'bass-down'
  1894. },
  1895. 'TUP',
  1896. {
  1897. 'description' => 'sets Front Treble up{2 step}',
  1898. 'name' => 'treble-up'
  1899. },
  1900. 'TDOWN',
  1901. {
  1902. 'description' => 'sets Front Treble down{2 step}',
  1903. 'name' => 'treble-down'
  1904. },
  1905. 'QSTN',
  1906. {
  1907. 'description' => 'gets Front Tone {"BxxTxx"}',
  1908. 'name' => 'query'
  1909. }
  1910. }
  1911. },
  1912. 'TFW',
  1913. {
  1914. 'description' => 'Tone{Front Wide} Command',
  1915. 'name' => 'tone-front-wide',
  1916. 'values' => {
  1917. 'B{xx}',
  1918. {
  1919. 'description' =>
  1920. 'Front Wide Bass {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  1921. 'name' => 'b-xx'
  1922. },
  1923. 'T{xx}',
  1924. {
  1925. 'description' =>
  1926. 'Front Wide Treble {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  1927. 'name' => 't-xx'
  1928. },
  1929. 'BUP',
  1930. {
  1931. 'description' => 'sets Front Wide Bass up{2 step}',
  1932. 'name' => 'bass-up'
  1933. },
  1934. 'BDOWN',
  1935. {
  1936. 'description' => 'sets Front Wide Bass down{2 step}',
  1937. 'name' => 'bass-down'
  1938. },
  1939. 'TUP',
  1940. {
  1941. 'description' => 'sets Front Wide Treble up{2 step}',
  1942. 'name' => 'treble-up'
  1943. },
  1944. 'TDOWN',
  1945. {
  1946. 'description' => 'sets Front Wide Treble down{2 step}',
  1947. 'name' => 'treble-down'
  1948. },
  1949. 'QSTN',
  1950. {
  1951. 'description' => 'gets Front Wide Tone {"BxxTxx"}',
  1952. 'name' => 'query'
  1953. }
  1954. }
  1955. },
  1956. 'TFH',
  1957. {
  1958. 'description' => 'Tone{Front High} Command',
  1959. 'name' => 'tone-front-high',
  1960. 'values' => {
  1961. 'B{xx}',
  1962. {
  1963. 'description' =>
  1964. 'Front High Bass {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  1965. 'name' => 'b-xx'
  1966. },
  1967. 'T{xx}',
  1968. {
  1969. 'description' =>
  1970. 'Front High Treble {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  1971. 'name' => 't-xx'
  1972. },
  1973. 'BUP',
  1974. {
  1975. 'description' => 'sets Front High Bass up{2 step}',
  1976. 'name' => 'bass-up'
  1977. },
  1978. 'BDOWN',
  1979. {
  1980. 'description' => 'sets Front High Bass down{2 step}',
  1981. 'name' => 'bass-down'
  1982. },
  1983. 'TUP',
  1984. {
  1985. 'description' => 'sets Front High Treble up{2 step}',
  1986. 'name' => 'treble-up'
  1987. },
  1988. 'TDOWN',
  1989. {
  1990. 'description' => 'sets Front High Treble down{2 step}',
  1991. 'name' => 'treble-down'
  1992. },
  1993. 'QSTN',
  1994. {
  1995. 'description' => 'gets Front High Tone {"BxxTxx"}',
  1996. 'name' => 'query'
  1997. }
  1998. }
  1999. },
  2000. 'TCT',
  2001. {
  2002. 'description' => 'Tone{Center} Command',
  2003. 'name' => 'tone-center',
  2004. 'values' => {
  2005. 'B{xx}',
  2006. {
  2007. 'description' =>
  2008. 'Center Bass {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  2009. 'name' => 'b-xx'
  2010. },
  2011. 'T{xx}',
  2012. {
  2013. 'description' =>
  2014. 'Center Treble {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  2015. 'name' => 't-xx'
  2016. },
  2017. 'BUP',
  2018. {
  2019. 'description' => 'sets Center Bass up{2 step}',
  2020. 'name' => 'bass-up'
  2021. },
  2022. 'BDOWN',
  2023. {
  2024. 'description' => 'sets Center Bass down{2 step}',
  2025. 'name' => 'bass-down'
  2026. },
  2027. 'TUP',
  2028. {
  2029. 'description' => 'sets Center Treble up{2 step}',
  2030. 'name' => 'treble-up'
  2031. },
  2032. 'TDOWN',
  2033. {
  2034. 'description' => 'sets Center Treble down{2 step}',
  2035. 'name' => 'treble-down'
  2036. },
  2037. 'QSTN',
  2038. {
  2039. 'description' => 'gets Cetner Tone {"BxxTxx"}',
  2040. 'name' => 'query'
  2041. }
  2042. }
  2043. },
  2044. 'TSR',
  2045. {
  2046. 'description' => 'Tone{Surround} Command',
  2047. 'name' => 'tone-surround',
  2048. 'values' => {
  2049. 'B{xx}',
  2050. {
  2051. 'description' =>
  2052. 'Surround Bass {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  2053. 'name' => 'b-xx'
  2054. },
  2055. 'T{xx}',
  2056. {
  2057. 'description' =>
  2058. 'Surround Treble {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  2059. 'name' => 't-xx'
  2060. },
  2061. 'BUP',
  2062. {
  2063. 'description' => 'sets Surround Bass up{2 step}',
  2064. 'name' => 'bass-up'
  2065. },
  2066. 'BDOWN',
  2067. {
  2068. 'description' => 'sets Surround Bass down{2 step}',
  2069. 'name' => 'bass-down'
  2070. },
  2071. 'TUP',
  2072. {
  2073. 'description' => 'sets Surround Treble up{2 step}',
  2074. 'name' => 'treble-up'
  2075. },
  2076. 'TDOWN',
  2077. {
  2078. 'description' => 'sets Surround Treble down{2 step}',
  2079. 'name' => 'treble-down'
  2080. },
  2081. 'QSTN',
  2082. {
  2083. 'description' => 'gets Surround Tone {"BxxTxx"}',
  2084. 'name' => 'query'
  2085. }
  2086. }
  2087. },
  2088. 'TSB',
  2089. {
  2090. 'description' => 'Tone{Surround Back} Command',
  2091. 'name' => 'tone-surround-back',
  2092. 'values' => {
  2093. 'B{xx}',
  2094. {
  2095. 'description' =>
  2096. 'Surround Back Bass {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  2097. 'name' => 'b-xx'
  2098. },
  2099. 'T{xx}',
  2100. {
  2101. 'description' =>
  2102. 'Surround Back Treble {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  2103. 'name' => 't-xx'
  2104. },
  2105. 'BUP',
  2106. {
  2107. 'description' => 'sets Surround Back Bass up{2 step}',
  2108. 'name' => 'bass-up'
  2109. },
  2110. 'BDOWN',
  2111. {
  2112. 'description' => 'sets Surround Back Bass down{2 step}',
  2113. 'name' => 'bass-down'
  2114. },
  2115. 'TUP',
  2116. {
  2117. 'description' => 'sets Surround Back Treble up{2 step}',
  2118. 'name' => 'treble-up'
  2119. },
  2120. 'TDOWN',
  2121. {
  2122. 'description' => 'sets Surround Back Treble down{2 step}',
  2123. 'name' => 'treble-down'
  2124. },
  2125. 'QSTN',
  2126. {
  2127. 'description' => 'gets Surround Back Tone {"BxxTxx"}',
  2128. 'name' => 'query'
  2129. }
  2130. }
  2131. },
  2132. 'TSW',
  2133. {
  2134. 'description' => 'Tone{Subwoofer} Command',
  2135. 'name' => 'tone-subwoofer',
  2136. 'values' => {
  2137. 'B{xx}',
  2138. {
  2139. 'description' =>
  2140. 'Subwoofer Bass {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  2141. 'name' => 'b-xx'
  2142. },
  2143. 'BUP',
  2144. {
  2145. 'description' => 'sets Subwoofer Bass up{2 step}',
  2146. 'name' => 'bass-up'
  2147. },
  2148. 'BDOWN',
  2149. {
  2150. 'description' => 'sets Subwoofer Bass down{2 step}',
  2151. 'name' => 'bass-down'
  2152. },
  2153. 'QSTN',
  2154. {
  2155. 'description' => 'gets Subwoofer Tone {"BxxTxx"}',
  2156. 'name' => 'query'
  2157. }
  2158. }
  2159. },
  2160. 'SLP',
  2161. {
  2162. 'description' => 'Sleep Set Command',
  2163. 'name' => 'sleep',
  2164. 'values' => {
  2165. "{1,90}",
  2166. {
  2167. 'description' =>
  2168. 'sets Sleep Time 1 - 90min { In hexadecimal representation}',
  2169. 'name' => 'time-1-90min'
  2170. },
  2171. 'OFF',
  2172. {
  2173. 'description' => 'sets Sleep Time Off',
  2174. 'name' => 'off'
  2175. },
  2176. '00',
  2177. {
  2178. 'description' => 'return value if Sleep Time Off',
  2179. 'name' => 'off'
  2180. },
  2181. 'UP',
  2182. {
  2183. 'description' => 'sets Sleep Time Wrap-Around UP',
  2184. 'name' => 'up'
  2185. },
  2186. 'QSTN',
  2187. {
  2188. 'description' => 'gets The Sleep Time',
  2189. 'name' => 'query'
  2190. }
  2191. }
  2192. },
  2193. 'SLC',
  2194. {
  2195. 'description' => 'Speaker Level Calibration Command',
  2196. 'name' => 'speaker-level-calibration',
  2197. 'values' => {
  2198. 'TEST',
  2199. {
  2200. 'description' => 'TEST Key',
  2201. 'name' => 'test'
  2202. },
  2203. 'CHSEL',
  2204. {
  2205. 'description' => 'CH SEL Key',
  2206. 'name' => 'chsel'
  2207. },
  2208. 'UP',
  2209. { 'description' => 'LEVEL + Key', 'name' => 'up' },
  2210. 'DOWN',
  2211. { 'description' => 'LEVEL KEY', 'name' => 'down' }
  2212. }
  2213. },
  2214. 'SWL',
  2215. {
  2216. 'description' => 'Subwoofer {temporary} Level Command',
  2217. 'name' => 'subwoofer-temporary-level',
  2218. 'values' => {
  2219. '{-15,0,12}',
  2220. {
  2221. 'description' => 'sets Subwoofer Level -15dB - 0dB - +12dB',
  2222. 'name' => '15db-0db-12db'
  2223. },
  2224. 'UP',
  2225. { 'description' => 'LEVEL + Key', 'name' => 'up' },
  2226. 'DOWN',
  2227. { 'description' => 'LEVEL KEY', 'name' => 'down' },
  2228. 'QSTN',
  2229. {
  2230. 'description' => 'gets the Subwoofer Level',
  2231. 'name' => 'query'
  2232. }
  2233. }
  2234. },
  2235. 'SW2',
  2236. {
  2237. 'description' => 'Subwoofer2 {temporary} Level Command',
  2238. 'name' => 'subwoofer2-temporary-level',
  2239. 'values' => {
  2240. '{-15,0,12}',
  2241. {
  2242. 'description' => 'sets Subwoofer Level -15dB - 0dB - +12dB',
  2243. 'name' => '15db-0db-12db'
  2244. },
  2245. 'UP',
  2246. { 'description' => 'LEVEL + Key', 'name' => 'up' },
  2247. 'DOWN',
  2248. { 'description' => 'LEVEL KEY', 'name' => 'down' },
  2249. 'QSTN',
  2250. {
  2251. 'description' => 'gets the Subwoofer Level',
  2252. 'name' => 'query'
  2253. }
  2254. }
  2255. },
  2256. 'CTL',
  2257. {
  2258. 'description' => 'Center {temporary} Level Command',
  2259. 'name' => 'center-temporary-level',
  2260. 'values' => {
  2261. '{-12,0,12}',
  2262. {
  2263. 'description' => 'sets Center Level -12dB - 0dB - +12dB',
  2264. 'name' => '12db-0db-12db'
  2265. },
  2266. 'UP',
  2267. { 'description' => 'LEVEL + Key', 'name' => 'up' },
  2268. 'DOWN',
  2269. { 'description' => 'LEVEL KEY', 'name' => 'down' },
  2270. 'QSTN',
  2271. {
  2272. 'description' => 'gets the Subwoofer Level',
  2273. 'name' => 'query'
  2274. }
  2275. }
  2276. },
  2277. 'DIF',
  2278. {
  2279. 'description' => 'Display Mode Command',
  2280. 'name' => 'display-mode',
  2281. 'values' => {
  2282. '00',
  2283. {
  2284. 'description' => 'sets Selector + Volume Display Mode',
  2285. 'name' => 'volume'
  2286. },
  2287. '01',
  2288. {
  2289. 'description' =>
  2290. 'sets Selector + Listening Mode Display Mode',
  2291. 'name' => 'listening'
  2292. },
  2293. '02',
  2294. {
  2295. 'description' =>
  2296. 'Display Digital Format{temporary display}',
  2297. 'name' => '02'
  2298. },
  2299. '03',
  2300. {
  2301. 'description' => 'Display Video Format{temporary display}',
  2302. 'name' => '03'
  2303. },
  2304. 'TG',
  2305. {
  2306. 'description' => 'sets Display Mode Wrap-Around Up',
  2307. 'name' => 'toggle'
  2308. },
  2309. 'QSTN',
  2310. {
  2311. 'description' => 'gets The Display Mode',
  2312. 'name' => 'query'
  2313. }
  2314. }
  2315. },
  2316. 'DIM',
  2317. {
  2318. 'description' => 'Dimmer Level Command',
  2319. 'name' => 'dimmer-level',
  2320. 'values' => {
  2321. '00',
  2322. {
  2323. 'description' => 'sets Dimmer Level "Bright"',
  2324. 'name' => 'bright'
  2325. },
  2326. '01',
  2327. {
  2328. 'description' => 'sets Dimmer Level "Dim"',
  2329. 'name' => 'dim'
  2330. },
  2331. '02',
  2332. {
  2333. 'description' => 'sets Dimmer Level "Dark"',
  2334. 'name' => 'dark'
  2335. },
  2336. '03',
  2337. {
  2338. 'description' => 'sets Dimmer Level "Shut-Off"',
  2339. 'name' => 'shut-off'
  2340. },
  2341. '08',
  2342. {
  2343. 'description' => 'sets Dimmer Level "Bright & LED OFF"',
  2344. 'name' => 'bright-led-off'
  2345. },
  2346. 'DIM',
  2347. {
  2348. 'description' => 'sets Dimmer Level Wrap-Around Up',
  2349. 'name' => 'dim'
  2350. },
  2351. 'QSTN',
  2352. {
  2353. 'description' => 'gets The Dimmer Level',
  2354. 'name' => 'query'
  2355. }
  2356. }
  2357. },
  2358. 'OSD',
  2359. {
  2360. 'description' => 'Setup Operation Command',
  2361. 'name' => 'setup',
  2362. 'values' => {
  2363. 'MENU',
  2364. {
  2365. 'description' => 'Menu Key',
  2366. 'name' => 'menu'
  2367. },
  2368. 'UP',
  2369. { 'description' => 'Up Key', 'name' => 'up' },
  2370. 'DOWN',
  2371. { 'description' => 'Down Key', 'name' => 'down' },
  2372. 'RIGHT',
  2373. { 'description' => 'Right Key', 'name' => 'right' },
  2374. 'LEFT',
  2375. { 'description' => 'Left Key', 'name' => 'left' },
  2376. 'ENTER',
  2377. { 'description' => 'Enter Key', 'name' => 'enter' },
  2378. 'EXIT',
  2379. { 'description' => 'Exit Key', 'name' => 'exit' },
  2380. 'AUDIO',
  2381. {
  2382. 'description' => 'Audio Adjust Key',
  2383. 'name' => 'audio'
  2384. },
  2385. 'VIDEO',
  2386. {
  2387. 'description' => 'Video Adjust Key',
  2388. 'name' => 'video'
  2389. },
  2390. 'HOME',
  2391. { 'description' => 'Home Key', 'name' => 'home' }
  2392. }
  2393. },
  2394. 'MEM',
  2395. {
  2396. 'description' => 'Memory Setup Command',
  2397. 'name' => 'memory-setup',
  2398. 'values' => {
  2399. 'STR',
  2400. {
  2401. 'description' => 'stores memory',
  2402. 'name' => 'str'
  2403. },
  2404. 'RCL',
  2405. {
  2406. 'description' => 'recalls memory',
  2407. 'name' => 'rcl'
  2408. },
  2409. 'LOCK',
  2410. {
  2411. 'description' => 'locks memory',
  2412. 'name' => 'lock'
  2413. },
  2414. 'UNLK',
  2415. {
  2416. 'description' => 'unlocks memory',
  2417. 'name' => 'unlk'
  2418. }
  2419. }
  2420. },
  2421. 'IFA',
  2422. {
  2423. 'description' => 'Audio Information Command',
  2424. 'name' => 'audio-information',
  2425. 'values' => {
  2426. 'nnnnn:nnnnn',
  2427. {
  2428. 'description' =>
  2429. "Infomation of Audio{Same Immediate Display ',' is separator of informations}",
  2430. 'name' => 'None'
  2431. },
  2432. 'QSTN',
  2433. {
  2434. 'description' => 'gets Infomation of Audio',
  2435. 'name' => 'query'
  2436. }
  2437. }
  2438. },
  2439. 'IFV',
  2440. {
  2441. 'description' => 'Video Information Command',
  2442. 'name' => 'video-information',
  2443. 'values' => {
  2444. 'nnnnn:nnnnn',
  2445. {
  2446. 'description' =>
  2447. "information of Video{Same Immediate Display ',' is separator of informations}",
  2448. 'name' => 'None'
  2449. },
  2450. 'QSTN',
  2451. {
  2452. 'description' => 'gets Infomation of Video',
  2453. 'name' => 'query'
  2454. }
  2455. }
  2456. },
  2457. 'SLI',
  2458. {
  2459. 'description' => 'Input Selector Command',
  2460. 'name' => 'input',
  2461. 'values' => {
  2462. '00',
  2463. {
  2464. 'description' => 'sets VIDEO1, VCR/DVR',
  2465. 'name' => [ 'video1', 'vcr', 'dvr' ]
  2466. },
  2467. '01',
  2468. {
  2469. 'description' => 'sets VIDEO2, CBL/SAT',
  2470. 'name' => [ 'video2', 'cbl', 'sat' ]
  2471. },
  2472. '02',
  2473. {
  2474. 'description' => 'sets VIDEO3, GAME/TV, GAME',
  2475. 'name' => [ 'video3', 'game' ]
  2476. },
  2477. '03',
  2478. {
  2479. 'description' => 'sets VIDEO4, AUX1{AUX}',
  2480. 'name' => [ 'video4', 'aux1' ]
  2481. },
  2482. '04',
  2483. {
  2484. 'description' => 'sets VIDEO5, AUX2',
  2485. 'name' => [ 'video5', 'aux2' ]
  2486. },
  2487. '05',
  2488. {
  2489. 'description' => 'sets VIDEO6, PC',
  2490. 'name' => [ 'video6', 'pc' ]
  2491. },
  2492. '06',
  2493. {
  2494. 'description' => 'sets VIDEO7',
  2495. 'name' => 'video7'
  2496. },
  2497. '07',
  2498. { 'description' => 'Hidden1', 'name' => '07' },
  2499. '08',
  2500. { 'description' => 'Hidden2', 'name' => '08' },
  2501. '09',
  2502. { 'description' => 'Hidden3', 'name' => '09' },
  2503. '10',
  2504. {
  2505. 'description' => 'sets DVD, BD/DVD',
  2506. 'name' => [ 'dvd', 'bd', 'dvd' ]
  2507. },
  2508. '20',
  2509. {
  2510. 'description' => 'sets TAPE{1}, TV/TAPE',
  2511. 'name' => [ 'tape-1', 'tape' ]
  2512. },
  2513. '21',
  2514. {
  2515. 'description' => 'sets TAPE2',
  2516. 'name' => 'tape2'
  2517. },
  2518. '22',
  2519. {
  2520. 'description' => 'sets PHONO',
  2521. 'name' => 'phono'
  2522. },
  2523. '23',
  2524. {
  2525. 'description' => 'sets CD, TV/CD',
  2526. 'name' => [ 'tv-cd', 'tv', 'cd' ]
  2527. },
  2528. '24',
  2529. { 'description' => 'sets FM', 'name' => 'fm' },
  2530. '25',
  2531. { 'description' => 'sets AM', 'name' => 'am' },
  2532. '26',
  2533. {
  2534. 'description' => 'sets TUNER',
  2535. 'name' => 'tuner'
  2536. },
  2537. '27',
  2538. {
  2539. 'description' => 'sets MUSIC SERVER, P4S, DLNA',
  2540. 'name' => [ 'music-server', 'p4s', 'dlna' ]
  2541. },
  2542. '28',
  2543. {
  2544. 'description' => 'sets INTERNET RADIO, iRadio Favorite',
  2545. 'name' => [ 'internet-radio', 'iradio-favorite' ]
  2546. },
  2547. '29',
  2548. {
  2549. 'description' => 'sets USB/USB{Front}',
  2550. 'name' => ['usb']
  2551. },
  2552. '2A',
  2553. {
  2554. 'description' => 'sets USB{Rear}',
  2555. 'name' => 'usb-rear'
  2556. },
  2557. '2B',
  2558. {
  2559. 'description' => 'sets NETWORK, NET',
  2560. 'name' => [ 'network', 'net' ]
  2561. },
  2562. '2C',
  2563. {
  2564. 'description' => 'sets USB{toggle}',
  2565. 'name' => 'usb-toggle'
  2566. },
  2567. '40',
  2568. {
  2569. 'description' => 'sets Universal PORT',
  2570. 'name' => 'universal-port'
  2571. },
  2572. '30',
  2573. {
  2574. 'description' => 'sets MULTI CH',
  2575. 'name' => 'multi-ch'
  2576. },
  2577. '31',
  2578. { 'description' => 'sets XM', 'name' => 'xm' },
  2579. '32',
  2580. {
  2581. 'description' => 'sets SIRIUS',
  2582. 'name' => 'sirius'
  2583. },
  2584. 'UP',
  2585. {
  2586. 'description' => 'sets Selector Position Wrap-Around Up',
  2587. 'name' => 'up'
  2588. },
  2589. 'DOWN',
  2590. {
  2591. 'description' => 'sets Selector Position Wrap-Around Down',
  2592. 'name' => 'down'
  2593. },
  2594. 'QSTN',
  2595. {
  2596. 'description' => 'gets The Selector Position',
  2597. 'name' => 'query'
  2598. }
  2599. }
  2600. },
  2601. 'SLR',
  2602. {
  2603. 'description' => 'RECOUT Selector Command',
  2604. 'name' => 'record-output',
  2605. 'values' => {
  2606. '00',
  2607. {
  2608. 'description' => 'sets VIDEO1',
  2609. 'name' => 'video1'
  2610. },
  2611. '01',
  2612. {
  2613. 'description' => 'sets VIDEO2',
  2614. 'name' => 'video2'
  2615. },
  2616. '02',
  2617. {
  2618. 'description' => 'sets VIDEO3',
  2619. 'name' => 'video3'
  2620. },
  2621. '03',
  2622. {
  2623. 'description' => 'sets VIDEO4',
  2624. 'name' => 'video4'
  2625. },
  2626. '04',
  2627. {
  2628. 'description' => 'sets VIDEO5',
  2629. 'name' => 'video5'
  2630. },
  2631. '05',
  2632. {
  2633. 'description' => 'sets VIDEO6',
  2634. 'name' => 'video6'
  2635. },
  2636. '06',
  2637. {
  2638. 'description' => 'sets VIDEO7',
  2639. 'name' => 'video7'
  2640. },
  2641. '10',
  2642. { 'description' => 'sets DVD', 'name' => 'dvd' },
  2643. '20',
  2644. {
  2645. 'description' => 'sets TAPE{1}',
  2646. 'name' => 'tape'
  2647. },
  2648. '21',
  2649. {
  2650. 'description' => 'sets TAPE2',
  2651. 'name' => 'tape2'
  2652. },
  2653. '22',
  2654. {
  2655. 'description' => 'sets PHONO',
  2656. 'name' => 'phono'
  2657. },
  2658. '23',
  2659. { 'description' => 'sets CD', 'name' => 'cd' },
  2660. '24',
  2661. { 'description' => 'sets FM', 'name' => 'fm' },
  2662. '25',
  2663. { 'description' => 'sets AM', 'name' => 'am' },
  2664. '26',
  2665. {
  2666. 'description' => 'sets TUNER',
  2667. 'name' => 'tuner'
  2668. },
  2669. '27',
  2670. {
  2671. 'description' => 'sets MUSIC SERVER',
  2672. 'name' => 'music-server'
  2673. },
  2674. '28',
  2675. {
  2676. 'description' => 'sets INTERNET RADIO',
  2677. 'name' => 'internet-radio'
  2678. },
  2679. '30',
  2680. {
  2681. 'description' => 'sets MULTI CH',
  2682. 'name' => 'multi-ch'
  2683. },
  2684. '31',
  2685. { 'description' => 'sets XM', 'name' => 'xm' },
  2686. '7F',
  2687. { 'description' => 'sets OFF', 'name' => 'off' },
  2688. '80',
  2689. {
  2690. 'description' => 'sets SOURCE',
  2691. 'name' => 'source'
  2692. },
  2693. 'QSTN',
  2694. {
  2695. 'description' => 'gets The Selector Position',
  2696. 'name' => 'query'
  2697. }
  2698. }
  2699. },
  2700. 'SLA',
  2701. {
  2702. 'description' => 'Audio Selector Command',
  2703. 'name' => 'audio-input',
  2704. 'values' => {
  2705. '00',
  2706. { 'description' => 'sets AUTO', 'name' => 'auto' },
  2707. '01',
  2708. {
  2709. 'description' => 'sets MULTI-CHANNEL',
  2710. 'name' => 'multi-channel'
  2711. },
  2712. '02',
  2713. {
  2714. 'description' => 'sets ANALOG',
  2715. 'name' => 'analog'
  2716. },
  2717. '03',
  2718. {
  2719. 'description' => 'sets iLINK',
  2720. 'name' => 'ilink'
  2721. },
  2722. '04',
  2723. { 'description' => 'sets HDMI', 'name' => 'hdmi' },
  2724. '05',
  2725. {
  2726. 'description' => 'sets COAX/OPT',
  2727. 'name' => [ 'coax', 'opt' ]
  2728. },
  2729. '06',
  2730. {
  2731. 'description' => 'sets BALANCE',
  2732. 'name' => 'balance'
  2733. },
  2734. '07',
  2735. { 'description' => 'sets ARC', 'name' => 'arc' },
  2736. 'UP',
  2737. {
  2738. 'description' => 'sets Audio Selector Wrap-Around Up',
  2739. 'name' => 'up'
  2740. },
  2741. 'QSTN',
  2742. {
  2743. 'description' => 'gets The Audio Selector Status',
  2744. 'name' => 'query'
  2745. }
  2746. }
  2747. },
  2748. 'TGA',
  2749. {
  2750. 'description' => '12V Trigger A Command',
  2751. 'name' => '12v-trigger-a',
  2752. 'values' => {
  2753. '00',
  2754. {
  2755. 'description' => 'sets 12V Trigger A Off',
  2756. 'name' => 'off'
  2757. },
  2758. '01',
  2759. {
  2760. 'description' => 'sets 12V Trigger A On',
  2761. 'name' => 'on'
  2762. }
  2763. }
  2764. },
  2765. 'TGB',
  2766. {
  2767. 'description' => '12V Trigger B Command',
  2768. 'name' => '12v-trigger-b',
  2769. 'values' => {
  2770. '00',
  2771. {
  2772. 'description' => 'sets 12V Trigger B Off',
  2773. 'name' => 'off'
  2774. },
  2775. '01',
  2776. {
  2777. 'description' => 'sets 12V Trigger B On',
  2778. 'name' => 'on'
  2779. }
  2780. }
  2781. },
  2782. 'TGC',
  2783. {
  2784. 'description' => '12V Trigger C Command',
  2785. 'name' => '12v-trigger-c',
  2786. 'values' => {
  2787. '00',
  2788. {
  2789. 'description' => 'sets 12V Trigger C Off',
  2790. 'name' => 'off'
  2791. },
  2792. '01',
  2793. {
  2794. 'description' => 'sets 12V Trigger C On',
  2795. 'name' => 'on'
  2796. }
  2797. }
  2798. },
  2799. 'VOS',
  2800. {
  2801. 'description' => 'Video Output Selector {Japanese Model Only}',
  2802. 'name' => 'video-output',
  2803. 'values' => {
  2804. '00',
  2805. { 'description' => 'sets D4', 'name' => 'd4' },
  2806. '01',
  2807. {
  2808. 'description' => 'sets Component',
  2809. 'name' => 'component'
  2810. },
  2811. 'QSTN',
  2812. {
  2813. 'description' => 'gets The Selector Position',
  2814. 'name' => 'query'
  2815. }
  2816. }
  2817. },
  2818. 'HDO',
  2819. {
  2820. 'description' => 'HDMI Output Selector',
  2821. 'name' => 'hdmi-output',
  2822. 'values' => {
  2823. '00',
  2824. {
  2825. 'description' => 'sets No, Analog',
  2826. 'name' => [ 'no', 'analog' ]
  2827. },
  2828. '01',
  2829. {
  2830. 'description' => 'sets Yes/Out Main, HDMI Main',
  2831. 'name' => [ 'yes', 'out' ]
  2832. },
  2833. '02',
  2834. {
  2835. 'description' => 'sets Out Sub, HDMI Sub',
  2836. 'name' => [ 'out-sub', 'sub' ]
  2837. },
  2838. '03',
  2839. {
  2840. 'description' => 'sets, Both',
  2841. 'name' => 'both'
  2842. },
  2843. '04',
  2844. {
  2845. 'description' => 'sets, Both{Main}',
  2846. 'name' => 'both-main'
  2847. },
  2848. '05',
  2849. {
  2850. 'description' => 'sets, Both{Sub}',
  2851. 'name' => 'both-sub'
  2852. },
  2853. 'UP',
  2854. {
  2855. 'description' => 'sets HDMI Out Selector Wrap-Around Up',
  2856. 'name' => 'up'
  2857. },
  2858. 'QSTN',
  2859. {
  2860. 'description' => 'gets The HDMI Out Selector',
  2861. 'name' => 'query'
  2862. }
  2863. }
  2864. },
  2865. 'HAO',
  2866. {
  2867. 'description' => 'HDMI Audio Out',
  2868. 'name' => 'hdmi-audio-out',
  2869. 'values' => {
  2870. '00',
  2871. { 'description' => 'sets Off', 'name' => 'off' },
  2872. '01',
  2873. { 'description' => 'sets On', 'name' => 'on' },
  2874. '02',
  2875. { 'description' => 'sets Auto', 'name' => 'auto' },
  2876. 'UP',
  2877. {
  2878. 'description' => 'sets HDMI Audio Out Wrap-Around Up',
  2879. 'name' => 'up'
  2880. },
  2881. 'QSTN',
  2882. {
  2883. 'description' => 'gets HDMI Audio Out',
  2884. 'name' => 'query'
  2885. }
  2886. }
  2887. },
  2888. 'RES',
  2889. {
  2890. 'description' => 'Monitor Out Resolution',
  2891. 'name' => 'monitor-out-resolution',
  2892. 'values' => {
  2893. '00',
  2894. {
  2895. 'description' => 'sets Through',
  2896. 'name' => 'through'
  2897. },
  2898. '01',
  2899. {
  2900. 'description' => 'sets Auto{HDMI Output Only}',
  2901. 'name' => 'auto'
  2902. },
  2903. '02',
  2904. { 'description' => 'sets 480p', 'name' => '480p' },
  2905. '03',
  2906. { 'description' => 'sets 720p', 'name' => '720p' },
  2907. '04',
  2908. {
  2909. 'description' => 'sets 1080i',
  2910. 'name' => '1080i'
  2911. },
  2912. '05',
  2913. {
  2914. 'description' => 'sets 1080p{HDMI Output Only}',
  2915. 'name' => '1080p'
  2916. },
  2917. '07',
  2918. {
  2919. 'description' => 'sets 1080p/24fs{HDMI Output Only}',
  2920. 'name' => [ '1080p', '24fs' ]
  2921. },
  2922. '08',
  2923. {
  2924. 'description' => 'sets 4K Upcaling{HDMI Output Only}',
  2925. 'name' => '4k-upcaling'
  2926. },
  2927. '06',
  2928. {
  2929. 'description' => 'sets Source',
  2930. 'name' => 'source'
  2931. },
  2932. 'UP',
  2933. {
  2934. 'description' =>
  2935. 'sets Monitor Out Resolution Wrap-Around Up',
  2936. 'name' => 'up'
  2937. },
  2938. 'QSTN',
  2939. {
  2940. 'description' => 'gets The Monitor Out Resolution',
  2941. 'name' => 'query'
  2942. }
  2943. }
  2944. },
  2945. 'ISF',
  2946. {
  2947. 'description' => 'ISF Mode',
  2948. 'name' => 'isf-mode',
  2949. 'values' => {
  2950. '00',
  2951. {
  2952. 'description' => 'sets ISF Mode Custom',
  2953. 'name' => 'custom'
  2954. },
  2955. '01',
  2956. {
  2957. 'description' => 'sets ISF Mode Day',
  2958. 'name' => 'day'
  2959. },
  2960. '02',
  2961. {
  2962. 'description' => 'sets ISF Mode Night',
  2963. 'name' => 'night'
  2964. },
  2965. 'UP',
  2966. {
  2967. 'description' => 'sets ISF Mode State Wrap-Around Up',
  2968. 'name' => 'up'
  2969. },
  2970. 'QSTN',
  2971. {
  2972. 'description' => 'gets The ISF Mode State',
  2973. 'name' => 'query'
  2974. }
  2975. }
  2976. },
  2977. 'VWM',
  2978. {
  2979. 'description' => 'Video Wide Mode',
  2980. 'name' => 'video-wide-mode',
  2981. 'values' => {
  2982. '00',
  2983. { 'description' => 'sets Auto', 'name' => 'auto' },
  2984. '01',
  2985. { 'description' => 'sets 4:3', 'name' => '4-3' },
  2986. '02',
  2987. { 'description' => 'sets Full', 'name' => 'full' },
  2988. '03',
  2989. { 'description' => 'sets Zoom', 'name' => 'zoom' },
  2990. '04',
  2991. {
  2992. 'description' => 'sets Wide Zoom',
  2993. 'name' => 'zoom'
  2994. },
  2995. '05',
  2996. {
  2997. 'description' => 'sets Smart Zoom',
  2998. 'name' => 'smart-zoom'
  2999. },
  3000. 'UP',
  3001. {
  3002. 'description' => 'sets Video Zoom Mode Wrap-Around Up',
  3003. 'name' => 'up'
  3004. },
  3005. 'QSTN',
  3006. {
  3007. 'description' => 'gets Video Zoom Mode',
  3008. 'name' => 'query'
  3009. }
  3010. }
  3011. },
  3012. 'VPM',
  3013. {
  3014. 'description' => 'Video Picture Mode',
  3015. 'name' => 'video-picture-mode',
  3016. 'values' => {
  3017. '00',
  3018. {
  3019. 'description' => 'sets Through',
  3020. 'name' => 'through'
  3021. },
  3022. '01',
  3023. {
  3024. 'description' => 'sets Custom',
  3025. 'name' => 'custom'
  3026. },
  3027. '02',
  3028. {
  3029. 'description' => 'sets Cinema',
  3030. 'name' => 'cinema'
  3031. },
  3032. '03',
  3033. { 'description' => 'sets Game', 'name' => 'game' },
  3034. '05',
  3035. {
  3036. 'description' => 'sets ISF Day',
  3037. 'name' => 'isf-day'
  3038. },
  3039. '06',
  3040. {
  3041. 'description' => 'sets ISF Night',
  3042. 'name' => 'isf-night'
  3043. },
  3044. '07',
  3045. {
  3046. 'description' => 'sets Streaming',
  3047. 'name' => 'streaming'
  3048. },
  3049. '08',
  3050. {
  3051. 'description' => 'sets Direct',
  3052. 'name' => 'direct'
  3053. },
  3054. 'UP',
  3055. {
  3056. 'description' => 'sets Video Zoom Mode Wrap-Around Up',
  3057. 'name' => 'up'
  3058. },
  3059. 'QSTN',
  3060. {
  3061. 'description' => 'gets Video Zoom Mode',
  3062. 'name' => 'query'
  3063. }
  3064. }
  3065. },
  3066. 'LMD',
  3067. {
  3068. 'description' => 'Listening Mode Command',
  3069. 'name' => 'listening-mode',
  3070. 'values' => {
  3071. '00',
  3072. {
  3073. 'description' => 'sets STEREO',
  3074. 'name' => 'stereo'
  3075. },
  3076. '01',
  3077. {
  3078. 'description' => 'sets DIRECT',
  3079. 'name' => 'direct'
  3080. },
  3081. '02',
  3082. {
  3083. 'description' => 'sets SURROUND',
  3084. 'name' => 'surround'
  3085. },
  3086. '03',
  3087. {
  3088. 'description' => 'sets FILM, Game-RPG',
  3089. 'name' => 'game-rpg'
  3090. },
  3091. '04',
  3092. { 'description' => 'sets THX', 'name' => 'thx' },
  3093. '05',
  3094. {
  3095. 'description' => 'sets ACTION, Game-Action',
  3096. 'name' => 'game-action'
  3097. },
  3098. '06',
  3099. {
  3100. 'description' => 'sets MUSICAL, Game-Rock',
  3101. 'name' => 'game-rock'
  3102. },
  3103. '07',
  3104. {
  3105. 'description' => 'sets MONO MOVIE',
  3106. 'name' => 'mono-movie'
  3107. },
  3108. '08',
  3109. {
  3110. 'description' => 'sets ORCHESTRA',
  3111. 'name' => 'orchestra'
  3112. },
  3113. '09',
  3114. {
  3115. 'description' => 'sets UNPLUGGED',
  3116. 'name' => 'unplugged'
  3117. },
  3118. '0A',
  3119. {
  3120. 'description' => 'sets STUDIO-MIX',
  3121. 'name' => 'studio-mix'
  3122. },
  3123. '0B',
  3124. {
  3125. 'description' => 'sets TV LOGIC',
  3126. 'name' => 'tv-logic'
  3127. },
  3128. '0C',
  3129. {
  3130. 'description' => 'sets ALL CH STEREO',
  3131. 'name' => 'all-ch-stereo'
  3132. },
  3133. '0D',
  3134. {
  3135. 'description' => 'sets THEATER-DIMENSIONAL',
  3136. 'name' => 'theater-dimensional'
  3137. },
  3138. '0E',
  3139. {
  3140. 'description' => 'sets ENHANCED 7/ENHANCE, Game-Sports',
  3141. 'name' => 'game-sports'
  3142. },
  3143. '0F',
  3144. { 'description' => 'sets MONO', 'name' => 'mono' },
  3145. '11',
  3146. {
  3147. 'description' => 'sets PURE AUDIO',
  3148. 'name' => 'pure-audio'
  3149. },
  3150. '12',
  3151. {
  3152. 'description' => 'sets MULTIPLEX',
  3153. 'name' => 'multiplex'
  3154. },
  3155. '13',
  3156. {
  3157. 'description' => 'sets FULL MONO',
  3158. 'name' => 'full-mono'
  3159. },
  3160. '14',
  3161. {
  3162. 'description' => 'sets DOLBY VIRTUAL',
  3163. 'name' => 'dolby-virtual'
  3164. },
  3165. '15',
  3166. {
  3167. 'description' => 'sets DTS Surround Sensation',
  3168. 'name' => 'dts-surround-sensation'
  3169. },
  3170. '16',
  3171. {
  3172. 'description' => 'sets Audyssey DSX',
  3173. 'name' => 'audyssey-dsx'
  3174. },
  3175. '1F',
  3176. {
  3177. 'description' => 'sets Whole House Mode',
  3178. 'name' => 'whole-house'
  3179. },
  3180. '40',
  3181. {
  3182. 'description' => 'sets Straight Decode',
  3183. 'name' => 'straight-decode'
  3184. },
  3185. '41',
  3186. {
  3187. 'description' => 'sets Dolby EX',
  3188. 'name' => 'dolby-ex'
  3189. },
  3190. '42',
  3191. {
  3192. 'description' => 'sets THX Cinema',
  3193. 'name' => 'thx-cinema'
  3194. },
  3195. '43',
  3196. {
  3197. 'description' => 'sets THX Surround EX',
  3198. 'name' => 'thx-surround-ex'
  3199. },
  3200. '44',
  3201. {
  3202. 'description' => 'sets THX Music',
  3203. 'name' => 'thx-music'
  3204. },
  3205. '45',
  3206. {
  3207. 'description' => 'sets THX Games',
  3208. 'name' => 'thx-games'
  3209. },
  3210. '50',
  3211. {
  3212. 'description' => 'sets THX U2/S2/I/S Cinema/Cinema2',
  3213. 'name' => 'thx-cinema'
  3214. },
  3215. '51',
  3216. {
  3217. 'description' => 'sets THX MusicMode,THX U2/S2/I/S Music',
  3218. 'name' => 'thx-musicmode'
  3219. },
  3220. '52',
  3221. {
  3222. 'description' => 'sets THX Games Mode,THX U2/S2/I/S Games',
  3223. 'name' => 'thx-games'
  3224. },
  3225. '80',
  3226. {
  3227. 'description' => 'sets PLII/PLIIx Movie',
  3228. 'name' => 'pliix-movie'
  3229. },
  3230. '81',
  3231. {
  3232. 'description' => 'sets PLII/PLIIx Music',
  3233. 'name' => 'pliix-music'
  3234. },
  3235. '82',
  3236. {
  3237. 'description' => 'sets Neo:6 Cinema/Neo:X Cinema',
  3238. 'name' => 'neo-x-cinema'
  3239. },
  3240. '83',
  3241. {
  3242. 'description' => 'sets Neo:6 Music/Neo:X Music',
  3243. 'name' => 'neo-x-music'
  3244. },
  3245. '84',
  3246. {
  3247. 'description' => 'sets PLII/PLIIx THX Cinema',
  3248. 'name' => 'pliix-thx-cinema'
  3249. },
  3250. '85',
  3251. {
  3252. 'description' => 'sets Neo:6/Neo:X THX Cinema',
  3253. 'name' => 'neo-x-thx-cinema'
  3254. },
  3255. '86',
  3256. {
  3257. 'description' => 'sets PLII/PLIIx Game',
  3258. 'name' => 'pliix-game'
  3259. },
  3260. '87',
  3261. {
  3262. 'description' => 'sets Neural Surr',
  3263. 'name' => 'neural-surr'
  3264. },
  3265. '88',
  3266. {
  3267. 'description' => 'sets Neural THX/Neural Surround',
  3268. 'name' => 'neural-thx'
  3269. },
  3270. '89',
  3271. {
  3272. 'description' => 'sets PLII/PLIIx THX Games',
  3273. 'name' => 'pliix-thx-games'
  3274. },
  3275. '8A',
  3276. {
  3277. 'description' => 'sets Neo:6/Neo:X THX Games',
  3278. 'name' => 'neo-x-thx-games'
  3279. },
  3280. '8B',
  3281. {
  3282. 'description' => 'sets PLII/PLIIx THX Music',
  3283. 'name' => 'pliix-thx-music'
  3284. },
  3285. '8C',
  3286. {
  3287. 'description' => 'sets Neo:6/Neo:X THX Music',
  3288. 'name' => 'neo-x-thx-music'
  3289. },
  3290. '8D',
  3291. {
  3292. 'description' => 'sets Neural THX Cinema',
  3293. 'name' => 'neural-thx-cinema'
  3294. },
  3295. '8E',
  3296. {
  3297. 'description' => 'sets Neural THX Music',
  3298. 'name' => 'neural-thx-music'
  3299. },
  3300. '8F',
  3301. {
  3302. 'description' => 'sets Neural THX Games',
  3303. 'name' => 'neural-thx-games'
  3304. },
  3305. '90',
  3306. {
  3307. 'description' => 'sets PLIIz Height',
  3308. 'name' => 'pliiz-height'
  3309. },
  3310. '91',
  3311. {
  3312. 'description' => 'sets Neo:6 Cinema DTS Surround Sensation',
  3313. 'name' => 'neo-x-cinema-dts-surround-sensation'
  3314. },
  3315. '92',
  3316. {
  3317. 'description' => 'sets Neo:6 Music DTS Surround Sensation',
  3318. 'name' => 'neo-x-music-dts-surround-sensation'
  3319. },
  3320. '93',
  3321. {
  3322. 'description' => 'sets Neural Digital Music',
  3323. 'name' => 'neural-digital-music'
  3324. },
  3325. '94',
  3326. {
  3327. 'description' => 'sets PLIIz Height + THX Cinema',
  3328. 'name' => 'pliiz-height-thx-cinema'
  3329. },
  3330. '95',
  3331. {
  3332. 'description' => 'sets PLIIz Height + THX Music',
  3333. 'name' => 'pliiz-height-thx-music'
  3334. },
  3335. '96',
  3336. {
  3337. 'description' => 'sets PLIIz Height + THX Games',
  3338. 'name' => 'pliiz-height-thx-games'
  3339. },
  3340. '97',
  3341. {
  3342. 'description' => 'sets PLIIz Height + THX U2/S2 Cinema',
  3343. 'name' => 'pliiz-height-thx-u2-cinema'
  3344. },
  3345. '98',
  3346. {
  3347. 'description' => 'sets PLIIz Height + THX U2/S2 Music',
  3348. 'name' => 'pliiz-height-thx-u2-music'
  3349. },
  3350. '99',
  3351. {
  3352. 'description' => 'sets PLIIz Height + THX U2/S2 Games',
  3353. 'name' => 'pliiz-height-thx-u2-games'
  3354. },
  3355. '9A',
  3356. {
  3357. 'description' => 'sets Neo:X Game',
  3358. 'name' => 'neo-x-game'
  3359. },
  3360. 'A0',
  3361. {
  3362. 'description' => 'sets PLIIx/PLII Movie + Audyssey DSX',
  3363. 'name' => 'plii-movie-audyssey-dsx'
  3364. },
  3365. 'A1',
  3366. {
  3367. 'description' => 'sets PLIIx/PLII Music + Audyssey DSX',
  3368. 'name' => 'plii-music-audyssey-dsx'
  3369. },
  3370. 'A2',
  3371. {
  3372. 'description' => 'sets PLIIx/PLII Game + Audyssey DSX',
  3373. 'name' => 'plii-game-audyssey-dsx'
  3374. },
  3375. 'A3',
  3376. {
  3377. 'description' => 'sets Neo:6 Cinema + Audyssey DSX',
  3378. 'name' => 'neo-x-cinema-audyssey-dsx'
  3379. },
  3380. 'A4',
  3381. {
  3382. 'description' => 'sets Neo:6 Music + Audyssey DSX',
  3383. 'name' => 'neo-x-music-audyssey-dsx'
  3384. },
  3385. 'A5',
  3386. {
  3387. 'description' => 'sets Neural Surround + Audyssey DSX',
  3388. 'name' => 'neural-surround-audyssey-dsx'
  3389. },
  3390. 'A6',
  3391. {
  3392. 'description' => 'sets Neural Digital Music + Audyssey DSX',
  3393. 'name' => 'neural-digital-music-audyssey-dsx'
  3394. },
  3395. 'A7',
  3396. {
  3397. 'description' => 'sets Dolby EX + Audyssey DSX',
  3398. 'name' => 'dolby-ex-audyssey-dsx'
  3399. },
  3400. 'UP',
  3401. {
  3402. 'description' => 'sets Listening Mode Wrap-Around Up',
  3403. 'name' => 'up'
  3404. },
  3405. 'DOWN',
  3406. {
  3407. 'description' => 'sets Listening Mode Wrap-Around Down',
  3408. 'name' => 'down'
  3409. },
  3410. 'MOVIE',
  3411. {
  3412. 'description' => 'sets Listening Mode Wrap-Around Up',
  3413. 'name' => 'movie'
  3414. },
  3415. 'MUSIC',
  3416. {
  3417. 'description' => 'sets Listening Mode Wrap-Around Up',
  3418. 'name' => 'music'
  3419. },
  3420. 'GAME',
  3421. {
  3422. 'description' => 'sets Listening Mode Wrap-Around Up',
  3423. 'name' => 'game'
  3424. },
  3425. 'QSTN',
  3426. {
  3427. 'description' => 'gets The Listening Mode',
  3428. 'name' => 'query'
  3429. }
  3430. }
  3431. },
  3432. 'LTN',
  3433. {
  3434. 'description' => 'Late Night Command',
  3435. 'name' => 'late-night',
  3436. 'values' => {
  3437. '00',
  3438. {
  3439. 'description' => 'sets Late Night Off',
  3440. 'name' => 'off'
  3441. },
  3442. '01',
  3443. {
  3444. 'description' =>
  3445. 'sets Late Night Low@DolbyDigital,On@Dolby TrueHD',
  3446. 'name' => [ 'low-dolbydigital', 'on-dolby-truehd' ]
  3447. },
  3448. '02',
  3449. {
  3450. 'description' =>
  3451. 'sets Late Night High@DolbyDigital,{On@Dolby TrueHD}',
  3452. 'name' => ['high-dolbydigital']
  3453. },
  3454. '03',
  3455. {
  3456. 'description' => 'sets Late Night Auto@Dolby TrueHD',
  3457. 'name' => 'auto-dolby-truehd'
  3458. },
  3459. 'UP',
  3460. {
  3461. 'description' => 'sets Late Night State Wrap-Around Up',
  3462. 'name' => 'up'
  3463. },
  3464. 'QSTN',
  3465. {
  3466. 'description' => 'gets The Late Night Level',
  3467. 'name' => 'query'
  3468. }
  3469. }
  3470. },
  3471. 'RAS',
  3472. {
  3473. 'description' => 'Cinema Filter Command',
  3474. 'name' => 'cinema-filter',
  3475. 'values' => {
  3476. '00',
  3477. {
  3478. 'description' => 'sets Cinema Filter Off',
  3479. 'name' => 'off'
  3480. },
  3481. '01',
  3482. {
  3483. 'description' => 'sets Cinema Filter On',
  3484. 'name' => 'on'
  3485. },
  3486. 'UP',
  3487. {
  3488. 'description' => 'sets Cinema Filter State Wrap-Around Up',
  3489. 'name' => 'up'
  3490. },
  3491. 'QSTN',
  3492. {
  3493. 'description' => 'gets The Cinema Filter State',
  3494. 'name' => 'query'
  3495. }
  3496. }
  3497. },
  3498. 'ADY',
  3499. {
  3500. 'description' => 'Audyssey 2EQ/MultEQ/MultEQ XT',
  3501. 'name' => 'audyssey-2eq-multeq-multeq-xt',
  3502. 'values' => {
  3503. '00',
  3504. {
  3505. 'description' => 'sets Audyssey 2EQ/MultEQ/MultEQ XT Off',
  3506. 'name' => ['off']
  3507. },
  3508. '01',
  3509. {
  3510. 'description' =>
  3511. 'sets Audyssey 2EQ/MultEQ/MultEQ XT On/Movie',
  3512. 'name' => [ 'on', 'movie' ]
  3513. },
  3514. '02',
  3515. {
  3516. 'description' => 'sets Audyssey 2EQ/MultEQ/MultEQ XT Music',
  3517. 'name' => ['music']
  3518. },
  3519. 'UP',
  3520. {
  3521. 'description' =>
  3522. 'sets Audyssey 2EQ/MultEQ/MultEQ XT State Wrap-Around Up',
  3523. 'name' => 'up'
  3524. },
  3525. 'QSTN',
  3526. {
  3527. 'description' =>
  3528. 'gets The Audyssey 2EQ/MultEQ/MultEQ XT State',
  3529. 'name' => 'query'
  3530. }
  3531. }
  3532. },
  3533. 'ADQ',
  3534. {
  3535. 'description' => 'Audyssey Dynamic EQ',
  3536. 'name' => 'audyssey-dynamic-eq',
  3537. 'values' => {
  3538. '00',
  3539. {
  3540. 'description' => 'sets Audyssey Dynamic EQ Off',
  3541. 'name' => 'off'
  3542. },
  3543. '01',
  3544. {
  3545. 'description' => 'sets Audyssey Dynamic EQ On',
  3546. 'name' => 'on'
  3547. },
  3548. 'UP',
  3549. {
  3550. 'description' =>
  3551. 'sets Audyssey Dynamic EQ State Wrap-Around Up',
  3552. 'name' => 'up'
  3553. },
  3554. 'QSTN',
  3555. {
  3556. 'description' => 'gets The Audyssey Dynamic EQ State',
  3557. 'name' => 'query'
  3558. }
  3559. }
  3560. },
  3561. 'ADV',
  3562. {
  3563. 'description' => 'Audyssey Dynamic Volume',
  3564. 'name' => 'audyssey-dynamic-volume',
  3565. 'values' => {
  3566. '00',
  3567. {
  3568. 'description' => 'sets Audyssey Dynamic Volume Off',
  3569. 'name' => 'off'
  3570. },
  3571. '01',
  3572. {
  3573. 'description' => 'sets Audyssey Dynamic Volume Light',
  3574. 'name' => 'light'
  3575. },
  3576. '02',
  3577. {
  3578. 'description' => 'sets Audyssey Dynamic Volume Medium',
  3579. 'name' => 'medium'
  3580. },
  3581. '03',
  3582. {
  3583. 'description' => 'sets Audyssey Dynamic Volume Heavy',
  3584. 'name' => 'heavy'
  3585. },
  3586. 'UP',
  3587. {
  3588. 'description' =>
  3589. 'sets Audyssey Dynamic Volume State Wrap-Around Up',
  3590. 'name' => 'up'
  3591. },
  3592. 'QSTN',
  3593. {
  3594. 'description' => 'gets The Audyssey Dynamic Volume State',
  3595. 'name' => 'query'
  3596. }
  3597. }
  3598. },
  3599. 'DVL',
  3600. {
  3601. 'description' => 'Dolby Volume',
  3602. 'name' => 'dolby-volume',
  3603. 'values' => {
  3604. '00',
  3605. {
  3606. 'description' => 'sets Dolby Volume Off',
  3607. 'name' => 'off'
  3608. },
  3609. '01',
  3610. {
  3611. 'description' => 'sets Dolby Volume Low/On',
  3612. 'name' => [ 'low', 'on' ]
  3613. },
  3614. '02',
  3615. {
  3616. 'description' => 'sets Dolby Volume Mid',
  3617. 'name' => 'mid'
  3618. },
  3619. '03',
  3620. {
  3621. 'description' => 'sets Dolby Volume High',
  3622. 'name' => 'high'
  3623. },
  3624. 'UP',
  3625. {
  3626. 'description' => 'sets Dolby Volume State Wrap-Around Up',
  3627. 'name' => 'up'
  3628. },
  3629. 'QSTN',
  3630. {
  3631. 'description' => 'gets The Dolby Volume State',
  3632. 'name' => 'query'
  3633. }
  3634. }
  3635. },
  3636. 'MOT',
  3637. {
  3638. 'description' => 'Music Optimizer',
  3639. 'name' => 'music-optimizer',
  3640. 'values' => {
  3641. '00',
  3642. {
  3643. 'description' => 'sets Music Optimizer Off',
  3644. 'name' => 'off'
  3645. },
  3646. '01',
  3647. {
  3648. 'description' => 'sets Music Optimizer On',
  3649. 'name' => 'on'
  3650. },
  3651. 'UP',
  3652. {
  3653. 'description' =>
  3654. 'sets Music Optimizer State Wrap-Around Up',
  3655. 'name' => 'up'
  3656. },
  3657. 'QSTN',
  3658. {
  3659. 'description' => 'gets The Dolby Volume State',
  3660. 'name' => 'query'
  3661. }
  3662. }
  3663. },
  3664. 'TUN',
  3665. {
  3666. 'description' => 'Tuning Command {Include Tuner Pack Model Only}',
  3667. 'name' => 'tunerFrequency',
  3668. 'values' => {
  3669. 'nnnnn',
  3670. {
  3671. 'description' =>
  3672. 'sets Directly Tuning Frequency {FM nnn.nn MHz / AM nnnnn kHz / SR nnnnn ch}\nput 0 in the first two digits of nnnnn at SR',
  3673. 'name' => 'None'
  3674. },
  3675. 'DIRECT',
  3676. {
  3677. 'description' => 'starts/restarts Direct Tuning Mode',
  3678. 'name' => 'direct'
  3679. },
  3680. '0',
  3681. {
  3682. 'description' => 'sets 0 in Direct Tuning Mode',
  3683. 'name' => '0-in-direct-mode'
  3684. },
  3685. '1',
  3686. {
  3687. 'description' => 'sets 1 in Direct Tuning Mode',
  3688. 'name' => '1-in-direct-mode'
  3689. },
  3690. '2',
  3691. {
  3692. 'description' => 'sets 2 in Direct Tuning Mode',
  3693. 'name' => '2-in-direct-mode'
  3694. },
  3695. '3',
  3696. {
  3697. 'description' => 'sets 3 in Direct Tuning Mode',
  3698. 'name' => '3-in-direct-mode'
  3699. },
  3700. '4',
  3701. {
  3702. 'description' => 'sets 4 in Direct Tuning Mode',
  3703. 'name' => '4-in-direct-mode'
  3704. },
  3705. '5',
  3706. {
  3707. 'description' => 'sets 5 in Direct Tuning Mode',
  3708. 'name' => '5-in-direct-mode'
  3709. },
  3710. '6',
  3711. {
  3712. 'description' => 'sets 6 in Direct Tuning Mode',
  3713. 'name' => '6-in-direct-mode'
  3714. },
  3715. '7',
  3716. {
  3717. 'description' => 'sets 7 in Direct Tuning Mode',
  3718. 'name' => '7-in-direct-mode'
  3719. },
  3720. '8',
  3721. {
  3722. 'description' => 'sets 8 in Direct Tuning Mode',
  3723. 'name' => '8-in-direct-mode'
  3724. },
  3725. '9',
  3726. {
  3727. 'description' => 'sets 9 in Direct Tuning Mode',
  3728. 'name' => '9-in-direct-mode'
  3729. },
  3730. 'UP',
  3731. {
  3732. 'description' => 'sets Tuning Frequency Wrap-Around Up',
  3733. 'name' => 'up'
  3734. },
  3735. 'DOWN',
  3736. {
  3737. 'description' => 'sets Tuning Frequency Wrap-Around Down',
  3738. 'name' => 'down'
  3739. },
  3740. 'QSTN',
  3741. {
  3742. 'description' => 'gets The Tuning Frequency',
  3743. 'name' => 'query'
  3744. }
  3745. }
  3746. },
  3747. 'PRS',
  3748. {
  3749. 'description' => 'Preset Command {Include Tuner Pack Model Only}',
  3750. 'name' => 'preset',
  3751. 'values' => {
  3752. '{1,40}',
  3753. {
  3754. 'description' =>
  3755. 'sets Preset No. 1 - 40 { In hexadecimal representation}',
  3756. 'name' => 'no-1-40'
  3757. },
  3758. '{1,30}',
  3759. {
  3760. 'description' =>
  3761. 'sets Preset No. 1 - 30 { In hexadecimal representation}',
  3762. 'name' => 'no-1-30'
  3763. },
  3764. 'UP',
  3765. {
  3766. 'description' => 'sets Preset No. Wrap-Around Up',
  3767. 'name' => 'up'
  3768. },
  3769. 'DOWN',
  3770. {
  3771. 'description' => 'sets Preset No. Wrap-Around Down',
  3772. 'name' => 'down'
  3773. },
  3774. 'QSTN',
  3775. {
  3776. 'description' => 'gets The Preset No.',
  3777. 'name' => 'query'
  3778. }
  3779. }
  3780. },
  3781. 'PRM',
  3782. {
  3783. 'description' =>
  3784. 'Preset Memory Command {Include Tuner Pack Model Only}',
  3785. 'name' => 'preset-memory',
  3786. 'values' => {
  3787. '{1,40}',
  3788. {
  3789. 'description' =>
  3790. 'sets Preset No. 1 - 40 { In hexadecimal representation}',
  3791. 'name' => 'no-1-40'
  3792. },
  3793. '{1,30}',
  3794. {
  3795. 'description' =>
  3796. 'sets Preset No. 1 - 30 { In hexadecimal representation}',
  3797. 'name' => 'no-1-30'
  3798. }
  3799. }
  3800. },
  3801. 'RDS',
  3802. {
  3803. 'description' => 'RDS Information Command {RDS Model Only}',
  3804. 'name' => 'rds-information',
  3805. 'values' => {
  3806. '00',
  3807. {
  3808. 'description' => 'Display RT Information',
  3809. 'name' => '00'
  3810. },
  3811. '01',
  3812. {
  3813. 'description' => 'Display PTY Information',
  3814. 'name' => '01'
  3815. },
  3816. '02',
  3817. {
  3818. 'description' => 'Display TP Information',
  3819. 'name' => '02'
  3820. },
  3821. 'UP',
  3822. {
  3823. 'description' =>
  3824. 'Display RDS Information Wrap-Around Change',
  3825. 'name' => 'up'
  3826. }
  3827. }
  3828. },
  3829. 'PTS',
  3830. {
  3831. 'description' => 'PTY Scan Command {RDS Model Only}',
  3832. 'name' => 'pty-scan',
  3833. 'values' => {
  3834. '{0,30}',
  3835. {
  3836. 'description' =>
  3837. 'sets PTY No \u201c0 - 30\u201d { In hexadecimal representation}',
  3838. 'name' => 'no-0-30'
  3839. },
  3840. 'ENTER',
  3841. {
  3842. 'description' => 'Finish PTY Scan',
  3843. 'name' => 'enter'
  3844. }
  3845. }
  3846. },
  3847. 'TPS',
  3848. {
  3849. 'description' => 'TP Scan Command {RDS Model Only}',
  3850. 'name' => 'tp-scan',
  3851. 'values' => {
  3852. '',
  3853. {
  3854. 'description' =>
  3855. 'Start TP Scan {When Don\u2019t Have Parameter}',
  3856. 'name' => 'None'
  3857. },
  3858. 'ENTER',
  3859. {
  3860. 'description' => 'Finish TP Scan',
  3861. 'name' => 'enter'
  3862. }
  3863. }
  3864. },
  3865. 'XCN',
  3866. {
  3867. 'description' => 'XM Channel Name Info {XM Model Only}',
  3868. 'name' => 'xm-channel-name-info',
  3869. 'values' => {
  3870. 'nnnnnnnnnn',
  3871. {
  3872. 'description' => 'XM Channel Name',
  3873. 'name' => 'None'
  3874. },
  3875. 'QSTN',
  3876. {
  3877. 'description' => 'gets XM Channel Name',
  3878. 'name' => 'query'
  3879. }
  3880. }
  3881. },
  3882. 'XAT',
  3883. {
  3884. 'description' => 'XM Artist Name Info {XM Model Only}',
  3885. 'name' => 'xm-artist-name-info',
  3886. 'values' => {
  3887. 'nnnnnnnnnn',
  3888. {
  3889. 'description' => 'XM Artist Name',
  3890. 'name' => 'None'
  3891. },
  3892. 'QSTN',
  3893. {
  3894. 'description' => 'gets XM Artist Name',
  3895. 'name' => 'query'
  3896. }
  3897. }
  3898. },
  3899. 'XTI',
  3900. {
  3901. 'description' => 'XM Title Info {XM Model Only}',
  3902. 'name' => 'xm-title-info',
  3903. 'values' => {
  3904. 'nnnnnnnnnn',
  3905. {
  3906. 'description' => 'XM Title',
  3907. 'name' => 'None'
  3908. },
  3909. 'QSTN',
  3910. {
  3911. 'description' => 'gets XM Title',
  3912. 'name' => 'query'
  3913. }
  3914. }
  3915. },
  3916. 'XCH',
  3917. {
  3918. 'description' => 'XM Channel Number Command {XM Model Only}',
  3919. 'name' => 'xm-channel-number',
  3920. 'values' => {
  3921. '{0,597}',
  3922. {
  3923. 'description' => 'XM Channel Number \u201c000 - 255\u201d',
  3924. 'name' => 'None'
  3925. },
  3926. 'UP',
  3927. {
  3928. 'description' => 'sets XM Channel Wrap-Around Up',
  3929. 'name' => 'up'
  3930. },
  3931. 'DOWN',
  3932. {
  3933. 'description' => 'sets XM Channel Wrap-Around Down',
  3934. 'name' => 'down'
  3935. },
  3936. 'QSTN',
  3937. {
  3938. 'description' => 'gets XM Channel Number',
  3939. 'name' => 'query'
  3940. }
  3941. }
  3942. },
  3943. 'XCT',
  3944. {
  3945. 'description' => 'XM Category Command {XM Model Only}',
  3946. 'name' => 'xm-category',
  3947. 'values' => {
  3948. 'nnnnnnnnnn',
  3949. {
  3950. 'description' => 'XM Category Info',
  3951. 'name' => 'None'
  3952. },
  3953. 'UP',
  3954. {
  3955. 'description' => 'sets XM Category Wrap-Around Up',
  3956. 'name' => 'up'
  3957. },
  3958. 'DOWN',
  3959. {
  3960. 'description' => 'sets XM Category Wrap-Around Down',
  3961. 'name' => 'down'
  3962. },
  3963. 'QSTN',
  3964. {
  3965. 'description' => 'gets XM Category',
  3966. 'name' => 'query'
  3967. }
  3968. }
  3969. },
  3970. 'SCN',
  3971. {
  3972. 'description' => 'SIRIUS Channel Name Info {SIRIUS Model Only}',
  3973. 'name' => 'sirius-channel-name-info',
  3974. 'values' => {
  3975. 'nnnnnnnnnn',
  3976. {
  3977. 'description' => 'SIRIUS Channel Name',
  3978. 'name' => 'None'
  3979. },
  3980. 'QSTN',
  3981. {
  3982. 'description' => 'gets SIRIUS Channel Name',
  3983. 'name' => 'query'
  3984. }
  3985. }
  3986. },
  3987. 'SAT',
  3988. {
  3989. 'description' => 'SIRIUS Artist Name Info {SIRIUS Model Only}',
  3990. 'name' => 'sirius-artist-name-info',
  3991. 'values' => {
  3992. 'nnnnnnnnnn',
  3993. {
  3994. 'description' => 'SIRIUS Artist Name',
  3995. 'name' => 'None'
  3996. },
  3997. 'QSTN',
  3998. {
  3999. 'description' => 'gets SIRIUS Artist Name',
  4000. 'name' => 'query'
  4001. }
  4002. }
  4003. },
  4004. 'STI',
  4005. {
  4006. 'description' => 'SIRIUS Title Info {SIRIUS Model Only}',
  4007. 'name' => 'sirius-title-info',
  4008. 'values' => {
  4009. 'nnnnnnnnnn',
  4010. {
  4011. 'description' => 'SIRIUS Title',
  4012. 'name' => 'None'
  4013. },
  4014. 'QSTN',
  4015. {
  4016. 'description' => 'gets SIRIUS Title',
  4017. 'name' => 'query'
  4018. }
  4019. }
  4020. },
  4021. 'SCH',
  4022. {
  4023. 'description' =>
  4024. 'SIRIUS Channel Number Command {SIRIUS Model Only}',
  4025. 'name' => 'sirius-channel-number',
  4026. 'values' => {
  4027. '{0,597}',
  4028. {
  4029. 'description' =>
  4030. 'SIRIUS Channel Number \u201c000 - 255\u201d',
  4031. 'name' => 'None'
  4032. },
  4033. 'UP',
  4034. {
  4035. 'description' => 'sets SIRIUS Channel Wrap-Around Up',
  4036. 'name' => 'up'
  4037. },
  4038. 'DOWN',
  4039. {
  4040. 'description' => 'sets SIRIUS Channel Wrap-Around Down',
  4041. 'name' => 'down'
  4042. },
  4043. 'QSTN',
  4044. {
  4045. 'description' => 'gets SIRIUS Channel Number',
  4046. 'name' => 'query'
  4047. }
  4048. }
  4049. },
  4050. 'SCT',
  4051. {
  4052. 'description' => 'SIRIUS Category Command {SIRIUS Model Only}',
  4053. 'name' => 'sirius-category',
  4054. 'values' => {
  4055. 'nnnnnnnnnn',
  4056. {
  4057. 'description' => 'SIRIUS Category Info',
  4058. 'name' => 'None'
  4059. },
  4060. 'UP',
  4061. {
  4062. 'description' => 'sets SIRIUS Category Wrap-Around Up',
  4063. 'name' => 'up'
  4064. },
  4065. 'DOWN',
  4066. {
  4067. 'description' => 'sets SIRIUS Category Wrap-Around Down',
  4068. 'name' => 'down'
  4069. },
  4070. 'QSTN',
  4071. {
  4072. 'description' => 'gets SIRIUS Category',
  4073. 'name' => 'query'
  4074. }
  4075. }
  4076. },
  4077. 'SLK',
  4078. {
  4079. 'description' => 'SIRIUS Parental Lock Command {SIRIUS Model Only}',
  4080. 'name' => 'sirius-parental-lock',
  4081. 'values' => {
  4082. 'nnnn',
  4083. {
  4084. 'description' => 'Lock Password {4Digits}',
  4085. 'name' => 'None'
  4086. },
  4087. 'INPUT',
  4088. {
  4089. 'description' =>
  4090. 'displays "Please input the Lock password"',
  4091. 'name' => 'input'
  4092. },
  4093. 'WRONG',
  4094. {
  4095. 'description' => 'displays "The Lock password is wrong"',
  4096. 'name' => 'wrong'
  4097. }
  4098. }
  4099. },
  4100. 'HAT',
  4101. {
  4102. 'description' => 'HD Radio Artist Name Info {HD Radio Model Only}',
  4103. 'name' => 'hd-radio-artist-name-info',
  4104. 'values' => {
  4105. 'nnnnnnnnnn',
  4106. {
  4107. 'description' =>
  4108. 'HD Radio Artist Name {variable-length, 64 digits max}',
  4109. 'name' => 'None'
  4110. },
  4111. 'QSTN',
  4112. {
  4113. 'description' => 'gets HD Radio Artist Name',
  4114. 'name' => 'query'
  4115. }
  4116. }
  4117. },
  4118. 'HCN',
  4119. {
  4120. 'description' => 'HD Radio Channel Name Info {HD Radio Model Only}',
  4121. 'name' => 'hd-radio-channel-name-info',
  4122. 'values' => {
  4123. 'nnnnnnnnnn',
  4124. {
  4125. 'description' =>
  4126. 'HD Radio Channel Name {Station Name} {7 digits}',
  4127. 'name' => 'None'
  4128. },
  4129. 'QSTN',
  4130. {
  4131. 'description' => 'gets HD Radio Channel Name',
  4132. 'name' => 'query'
  4133. }
  4134. }
  4135. },
  4136. 'HTI',
  4137. {
  4138. 'description' => 'HD Radio Title Info {HD Radio Model Only}',
  4139. 'name' => 'hd-radio-title-info',
  4140. 'values' => {
  4141. 'nnnnnnnnnn',
  4142. {
  4143. 'description' =>
  4144. 'HD Radio Title {variable-length, 64 digits max}',
  4145. 'name' => 'None'
  4146. },
  4147. 'QSTN',
  4148. {
  4149. 'description' => 'gets HD Radio Title',
  4150. 'name' => 'query'
  4151. }
  4152. }
  4153. },
  4154. 'HDS',
  4155. {
  4156. 'description' => 'HD Radio Detail Info {HD Radio Model Only}',
  4157. 'name' => 'hd-radio-detail-info',
  4158. 'values' => {
  4159. 'nnnnnnnnnn',
  4160. {
  4161. 'description' => 'HD Radio Title',
  4162. 'name' => 'None'
  4163. },
  4164. 'QSTN',
  4165. {
  4166. 'description' => 'gets HD Radio Title',
  4167. 'name' => 'query'
  4168. }
  4169. }
  4170. },
  4171. 'HPR',
  4172. {
  4173. 'description' =>
  4174. 'HD Radio Channel Program Command {HD Radio Model Only}',
  4175. 'name' => 'hd-radio-channel-program',
  4176. 'values' => {
  4177. '{1,8}',
  4178. {
  4179. 'description' => 'sets directly HD Radio Channel Program',
  4180. 'name' => 'directly'
  4181. },
  4182. 'QSTN',
  4183. {
  4184. 'description' => 'gets HD Radio Channel Program',
  4185. 'name' => 'query'
  4186. }
  4187. }
  4188. },
  4189. 'HBL',
  4190. {
  4191. 'description' =>
  4192. 'HD Radio Blend Mode Command {HD Radio Model Only}',
  4193. 'name' => 'hd-radio-blend-mode',
  4194. 'values' => {
  4195. '00',
  4196. {
  4197. 'description' => 'sets HD Radio Blend Mode "Auto"',
  4198. 'name' => 'auto'
  4199. },
  4200. '01',
  4201. {
  4202. 'description' => 'sets HD Radio Blend Mode "Analog"',
  4203. 'name' => 'analog'
  4204. },
  4205. 'QSTN',
  4206. {
  4207. 'description' => 'gets the HD Radio Blend Mode Status',
  4208. 'name' => 'query'
  4209. }
  4210. }
  4211. },
  4212. 'HTS',
  4213. {
  4214. 'description' => 'HD Radio Tuner Status {HD Radio Model Only}',
  4215. 'name' => 'hd-radio-tuner-status',
  4216. 'values' => {
  4217. 'mmnnoo',
  4218. {
  4219. 'description' =>
  4220. 'HD Radio Tuner Status {3 bytes}\nmm -> "00" not HD, "01" HD\nnn -> current Program "01"-"08"\noo -> receivable Program {8 bits are represented in hexadecimal notation. Each bit shows receivable or not.}',
  4221. 'name' => 'mmnnoo'
  4222. },
  4223. 'QSTN',
  4224. {
  4225. 'description' => 'gets the HD Radio Tuner Status',
  4226. 'name' => 'query'
  4227. }
  4228. }
  4229. },
  4230. 'NTC',
  4231. {
  4232. 'description' =>
  4233. 'Network/USB Operation Command {Network Model Only after TX-NR905}',
  4234. 'name' => 'net-usb',
  4235. 'values' => {
  4236. 'PLAY',
  4237. {
  4238. 'description' => 'PLAY KEY',
  4239. 'name' => 'play'
  4240. },
  4241. 'STOP',
  4242. { 'description' => 'STOP KEY', 'name' => 'stop' },
  4243. 'PAUSE',
  4244. { 'description' => 'PAUSE KEY', 'name' => 'pause' },
  4245. 'TRUP',
  4246. {
  4247. 'description' => 'TRACK UP KEY',
  4248. 'name' => 'next'
  4249. },
  4250. 'TRDN',
  4251. {
  4252. 'description' => 'TRACK DOWN KEY',
  4253. 'name' => 'previous'
  4254. },
  4255. 'FF',
  4256. {
  4257. 'description' => 'FF KEY {CONTINUOUS*}',
  4258. 'name' => 'ff'
  4259. },
  4260. 'REW',
  4261. {
  4262. 'description' => 'REW KEY {CONTINUOUS*}',
  4263. 'name' => 'rew'
  4264. },
  4265. 'REPEAT',
  4266. {
  4267. 'description' => 'REPEAT KEY',
  4268. 'name' => 'repeat'
  4269. },
  4270. 'RANDOM',
  4271. {
  4272. 'description' => 'RANDOM KEY',
  4273. 'name' => 'random'
  4274. },
  4275. 'DISPLAY',
  4276. {
  4277. 'description' => 'DISPLAY KEY',
  4278. 'name' => 'display'
  4279. },
  4280. 'ALBUM',
  4281. { 'description' => 'ALBUM KEY', 'name' => 'album' },
  4282. 'ARTIST',
  4283. {
  4284. 'description' => 'ARTIST KEY',
  4285. 'name' => 'artist'
  4286. },
  4287. 'GENRE',
  4288. { 'description' => 'GENRE KEY', 'name' => 'genre' },
  4289. 'PLAYLIST',
  4290. {
  4291. 'description' => 'PLAYLIST KEY',
  4292. 'name' => 'playlist'
  4293. },
  4294. 'RIGHT',
  4295. { 'description' => 'RIGHT KEY', 'name' => 'right' },
  4296. 'LEFT',
  4297. { 'description' => 'LEFT KEY', 'name' => 'left' },
  4298. 'UP',
  4299. { 'description' => 'UP KEY', 'name' => 'up' },
  4300. 'DOWN',
  4301. { 'description' => 'DOWN KEY', 'name' => 'down' },
  4302. 'SELECT',
  4303. {
  4304. 'description' => 'SELECT KEY',
  4305. 'name' => 'select'
  4306. },
  4307. '0',
  4308. { 'description' => '0 KEY', 'name' => '0' },
  4309. '1',
  4310. { 'description' => '1 KEY', 'name' => '1' },
  4311. '2',
  4312. { 'description' => '2 KEY', 'name' => '2' },
  4313. '3',
  4314. { 'description' => '3 KEY', 'name' => '3' },
  4315. '4',
  4316. { 'description' => '4 KEY', 'name' => '4' },
  4317. '5',
  4318. { 'description' => '5 KEY', 'name' => '5' },
  4319. '6',
  4320. { 'description' => '6 KEY', 'name' => '6' },
  4321. '7',
  4322. { 'description' => '7 KEY', 'name' => '7' },
  4323. '8',
  4324. { 'description' => '8 KEY', 'name' => '8' },
  4325. '9',
  4326. { 'description' => '9 KEY', 'name' => '9' },
  4327. 'DELETE',
  4328. {
  4329. 'description' => 'DELETE KEY',
  4330. 'name' => 'delete'
  4331. },
  4332. 'CAPS',
  4333. { 'description' => 'CAPS KEY', 'name' => 'caps' },
  4334. 'LOCATION',
  4335. {
  4336. 'description' => 'LOCATION KEY',
  4337. 'name' => 'location'
  4338. },
  4339. 'LANGUAGE',
  4340. {
  4341. 'description' => 'LANGUAGE KEY',
  4342. 'name' => 'language'
  4343. },
  4344. 'SETUP',
  4345. { 'description' => 'SETUP KEY', 'name' => 'setup' },
  4346. 'RETURN',
  4347. {
  4348. 'description' => 'RETURN KEY',
  4349. 'name' => 'return'
  4350. },
  4351. 'CHUP',
  4352. {
  4353. 'description' => 'CH UP{for iRadio}',
  4354. 'name' => 'chup'
  4355. },
  4356. 'CHDN',
  4357. {
  4358. 'description' => 'CH DOWN{for iRadio}',
  4359. 'name' => 'chdn'
  4360. },
  4361. 'MENU',
  4362. { 'description' => 'MENU', 'name' => 'menu' },
  4363. 'TOP',
  4364. { 'description' => 'TOP MENU', 'name' => 'top' },
  4365. 'MODE',
  4366. {
  4367. 'description' => 'MODE{for iPod} STD<->EXT',
  4368. 'name' => 'mode'
  4369. },
  4370. 'LIST',
  4371. {
  4372. 'description' => 'LIST <-> PLAYBACK',
  4373. 'name' => 'list'
  4374. }
  4375. }
  4376. },
  4377. 'NAT',
  4378. {
  4379. 'description' => 'NET/USB Artist Name Info',
  4380. 'name' => 'net-usb-artist-name-info',
  4381. 'values' => {
  4382. 'nnnnnnnnnn',
  4383. {
  4384. 'description' =>
  4385. 'NET/USB Artist Name {variable-length, 64 Unicode letters [UTF-8 encoded] max , for Network Control only}',
  4386. 'name' => 'None'
  4387. },
  4388. 'QSTN',
  4389. {
  4390. 'description' => 'gets iPod Artist Name',
  4391. 'name' => 'query'
  4392. }
  4393. }
  4394. },
  4395. 'NAL',
  4396. {
  4397. 'description' => 'NET/USB Album Name Info',
  4398. 'name' => 'net-usb-album-name-info',
  4399. 'values' => {
  4400. 'nnnnnnn',
  4401. {
  4402. 'description' =>
  4403. 'NET/USB Album Name {variable-length, 64 Unicode letters [UTF-8 encoded] max , for Network Control only}',
  4404. 'name' => 'None'
  4405. },
  4406. 'QSTN',
  4407. {
  4408. 'description' => 'gets iPod Album Name',
  4409. 'name' => 'query'
  4410. }
  4411. }
  4412. },
  4413. 'NTI',
  4414. {
  4415. 'description' => 'NET/USB Title Name',
  4416. 'name' => 'net-usb-title-name',
  4417. 'values' => {
  4418. 'nnnnnnnnnn',
  4419. {
  4420. 'description' =>
  4421. 'NET/USB Title Name {variable-length, 64 Unicode letters [UTF-8 encoded] max , for Network Control only}',
  4422. 'name' => 'None'
  4423. },
  4424. 'QSTN',
  4425. {
  4426. 'description' => 'gets HD Radio Title',
  4427. 'name' => 'query'
  4428. }
  4429. }
  4430. },
  4431. 'NTM',
  4432. {
  4433. 'description' => 'NET/USB Time Info',
  4434. 'name' => 'net-usb-time-info',
  4435. 'values' => {
  4436. 'mm:ss/mm:ss',
  4437. {
  4438. 'description' =>
  4439. 'NET/USB Time Info {Elapsed time/Track Time Max 99:59}',
  4440. 'name' => 'mm-ss-mm-ss'
  4441. },
  4442. 'QSTN',
  4443. {
  4444. 'description' => 'gets iPod Time Info',
  4445. 'name' => 'query'
  4446. }
  4447. }
  4448. },
  4449. 'NTS',
  4450. {
  4451. 'description' => 'NET/USB Time Seek',
  4452. 'name' => 'net-usb-time-seek',
  4453. 'values' => {
  4454. 'mm:ss',
  4455. {
  4456. 'description' =>
  4457. 'mm: munites (00-99) ss: seconds (00-59). This command is only available when Time Seek is enable.',
  4458. 'name' => 'mm-ss'
  4459. },
  4460. }
  4461. },
  4462. 'NTR',
  4463. {
  4464. 'description' => 'NET/USB Track Info',
  4465. 'name' => 'net-usb-track-info',
  4466. 'values' => {
  4467. 'cccc/tttt',
  4468. {
  4469. 'description' =>
  4470. 'NET/USB Track Info {Current Track/Toral Track Max 9999}',
  4471. 'name' => 'cccc-tttt'
  4472. },
  4473. 'QSTN',
  4474. {
  4475. 'description' => 'gets iPod Time Info',
  4476. 'name' => 'query'
  4477. }
  4478. }
  4479. },
  4480. 'NST',
  4481. {
  4482. 'description' => 'NET/USB Play Status',
  4483. 'name' => 'net-usb-play-status',
  4484. 'values' => {
  4485. 'prs',
  4486. {
  4487. 'description' =>
  4488. 'NET/USB Play Status {3 letters}\np -> Play Status: "S": STOP, "P": Play, "p": Pause, "F": FF, "R": FR\nr -> Repeat Status: "-": Off, "R": All, "F": Folder, "1": Repeat 1,\ns -> Shuffle Status: "-": Off, "S": All , "A": Album, "F": Folder',
  4489. 'name' => 'prs'
  4490. },
  4491. 'QSTN',
  4492. {
  4493. 'description' => 'gets the Net/USB Status',
  4494. 'name' => 'query'
  4495. }
  4496. }
  4497. },
  4498. 'NPR',
  4499. {
  4500. 'description' => 'Internet Radio Preset Command',
  4501. 'name' => 'internet-radio-preset',
  4502. 'values' => {
  4503. '{1,40}',
  4504. {
  4505. 'description' =>
  4506. 'sets Preset No. 1 - 40 { In hexadecimal representation}',
  4507. 'name' => 'no-1-40'
  4508. },
  4509. 'SET',
  4510. {
  4511. 'description' => 'preset memory current station',
  4512. 'name' => 'set'
  4513. }
  4514. }
  4515. },
  4516. 'NLS',
  4517. {
  4518. 'description' => 'NET/USB List Info',
  4519. 'name' => 'net-usb-list-info',
  4520. 'values' => {
  4521. 'tlpnnnnnnnnnn',
  4522. {
  4523. 'description' =>
  4524. 'NET/USB List Info\nt ->Information Type {A : ASCII letter, C : Cursor Info, U : Unicode letter}\nwhen t = A,\n l ->Line Info {0-9 : 1st to 10th Line}\n nnnnnnnnn:Listed data {variable-length, 64 ASCII letters max}\n when AVR is not displayed NET/USB List{Ketboard,Menu,Popup\u2026}, "nnnnnnnnn" is "See TV".\n p ->Property {- : no}\nwhen t = C,\n l ->Cursor Position {0-9 : 1st to 10th Line, - : No Cursor}\n p ->Update Type {P : Page Infomation Update { Page Clear or Disable List Info} , C : Cursor Position Update}\nwhen t = U, {for Network Control Only}\n l ->Line Info {0-9 : 1st to 10th Line}\n nnnnnnnnn:Listed data {variable-length, 64 Unicode letters [UTF-8 encoded] max}\n when AVR is not displayed NET/USB List{Ketboard,Menu,Popup\u2026}, "nnnnnnnnn" is "See TV".\n p ->Property {- : no}',
  4525. 'name' => 'None'
  4526. },
  4527. 'ti',
  4528. {
  4529. 'description' =>
  4530. 'select the listed item {from Network Control Only}\n t -> Index Type {L : Line, I : Index}\nwhen t = L,\n i -> Line number {0-9 : 1st to 10th Line [1 digit] }\nwhen t = I,\n iiiii -> Index number {00001-99999 : 1st to 99999th Item [5 digits] }',
  4531. 'name' => 'none'
  4532. }
  4533. },
  4534. },
  4535. 'NLA',
  4536. {
  4537. 'description' =>
  4538. 'NET/USB List Info (All item, need processing XML data, for Network Control Only)',
  4539. 'name' => 'net-usb-list-info-xml',
  4540. 'values' => {
  4541. 'tzzzzsurr<.....>',
  4542. {
  4543. 'description' => 't -> responce type \'X\' : XML
  4544. zzzz -> sequence number (0000-FFFF)
  4545. s -> status \'S\' : success, \'E\' : error
  4546. u -> UI type \'0\' : List, \'1\' : Menu, \'2\' : Playback, \'3\' : Popup, \'4\' : Keyboard, ""5"" : Menu List
  4547. rr -> reserved
  4548. <.....> : XML data ( [CR] and [LF] are removed )
  4549. If s=\'S\',
  4550. <?xml version=""1.0"" encoding=""UFT-8""?>
  4551. <response status=""ok"">
  4552. <items offset=""xxxx"" totalitems=""yyyy"" >
  4553. <item icontype=""a"" title=""bbb…bbb"" />
  4554. <item icontype=""a"" title=""bbb…bbb"" />
  4555. </Items>
  4556. </response>
  4557. If s=\'E\',
  4558. <?xml version=""1.0"" encoding=""UFT-8""?>
  4559. <response status=""fail"">
  4560. <error code=""[error code]"" message=""[error message]"" />
  4561. </response>
  4562. xxxx : index of 1st item (0000-FFFF : 1st to 65536th Item [4 HEX digits] )
  4563. yyyy : number of items (0000-FFFF : 1 to 65536 Items [4 HEX digits] )
  4564. a: Icon Type (for Spotify)
  4565. \'0\' : Playing, \'1\' : Pause, \'2\' : FF, \'3\' : FR
  4566. \'A\' : Artist, \'B\' : Album, \'F\' : Folder, \'G\' : Program, \'M\' : Music, \'N\' : Server, \'P\' : Playlist, \'S\' : Search, \'T\' : Track
  4567. \'a\' : Account, \'b\' : Playlist-C, \'c\' : Starred, \'d\' : Unstarred, \'e\' : What\'s New
  4568. bbb...bbb : Title',
  4569. 'name' => 'None'
  4570. },
  4571. 'tzzzzsurr<.....>',
  4572. {
  4573. 'description' => 't -> responce type \'X\' : XML
  4574. zzzz -> sequence number (0000-FFFF)
  4575. s -> status \'S\' : success, \'E\' : error
  4576. u -> UI type \'0\' : List, \'1\' : Menu, \'2\' : Playback, \'3\' : Popup, \'4\' : Keyboard, ""5"" : Menu List
  4577. rr -> reserved
  4578. <.....> : XML data ( [CR] and [LF] are removed )
  4579. If s=\'S\',
  4580. <?xml version=""1.0"" encoding=""UFT-8""?>
  4581. <response status=""ok"">
  4582. <items offset=""xxxx"" totalitems=""yyyy"" >
  4583. <item iconid=""aa"" title=""bbb…bbb"" />
  4584. <item iconid=""aa"" title=""bbb…bbb"" />
  4585. </Items>
  4586. </response>
  4587. If s=\'E\',
  4588. <?xml version=""1.0"" encoding=""UFT-8""?>
  4589. <response status=""fail"">
  4590. <error code=""[error code]"" message=""[error message]"" />
  4591. </response>
  4592. xxxx : index of 1st item (0000-FFFF : 1st to 65536th Item [4 HEX digits] )
  4593. yyyy : number of items (0000-FFFF : 1 to 65536 Items [4 HEX digits] )
  4594. aa : Icon ID
  4595. \'29\' : Folder, \'2A\' : Folder X, \'2B\' : Server, \'2C\' : Server X, \'2D\' : Title, \'2E\' : Title X,
  4596. \'2F\' : Program, \'31\' : USB, \'36\' : Play, \'37\' : MultiAccount,
  4597. for Spotify
  4598. \'38\' : Account, \'39\' : Album, \'3A\' : Playlist, \'3B\' : Playlist-C, \'3C\' : starred,
  4599. \'3D\' : What\'sNew, \'3E\' : Artist, \'3F\' : Track, \'40\' : unstarred, \'41\' : Play, \'43\' : Search, \'44\' : Folder
  4600. for AUPEO!
  4601. \'42\' : Program
  4602. bbb...bbb : Title',
  4603. 'name' => 'None'
  4604. },
  4605. 'Lzzzzllxxxxyyyy',
  4606. {
  4607. 'description' =>
  4608. 'specifiy to get the listed data (from Network Control Only)
  4609. zzzz -> sequence number (0000-FFFF)
  4610. ll -> number of layer (00-FF)
  4611. xxxx -> index of start item (0000-FFFF : 1st to 65536th Item [4 HEX digits] )
  4612. yyyy -> number of items (0000-FFFF : 1 to 65536 Items [4 HEX digits] )',
  4613. 'name' => 'none'
  4614. },
  4615. 'Izzzzllxxxx----',
  4616. {
  4617. 'description' =>
  4618. 'select the listed item (from Network Control Only)
  4619. zzzz -> sequence number (0000-FFFF)
  4620. ll -> number of layer (00-FF)
  4621. xxxx -> index number (0000-FFFF : 1st to 65536th Item [4 HEX digits] )
  4622. ---- -> not used',
  4623. 'name' => 'none'
  4624. },
  4625. },
  4626. },
  4627. 'NLT',
  4628. {
  4629. 'description' => 'NET/USB List Title Info',
  4630. 'name' => 'net-usb-list-title-info',
  4631. 'values' => {
  4632. 'xxuycccciiiillrraabbssnnn...nnn',
  4633. {
  4634. 'description' => 'NET/USB List Title Info
  4635. xx : Service Type
  4636. 00 : DLNA, 01 : Favorite, 02 : vTuner, 03 : SiriusXM, 04 : Pandora, 05 : Rhapsody, 06 : Last.fm,
  4637. 07 : Napster, 08 : Slacker, 09 : Mediafly, 0A : Spotify, 0B : AUPEO!, 0C : radiko, 0D : e-onkyo,
  4638. 0E : TuneIn Radio, 0F : MP3tunes, 10 : Simfy, 11:Home Media
  4639. F0 : USB Front, F1 : USB Rear, F2 : Internet Radio, F3 : NET, FF : None
  4640. u : UI Type
  4641. 0 : List, 1 : Menu, 2 : Playback, 3 : Popup, 4 : Keyboard, \"\"5\"\" : Menu List
  4642. y : Layer Info
  4643. 0 : NET TOP, 1 : Service Top,DLNA/USB/iPod Top, 2 : under 2nd Layer
  4644. cccc : Current Cursor Position (HEX 4 letters)
  4645. iiii : Number of List Items (HEX 4 letters)
  4646. ll : Number of Layer(HEX 2 letters)
  4647. rr : Reserved (2 leters)
  4648. aa : Icon on Left of Title Bar
  4649. 00 : Internet Radio, 01 : Server, 02 : USB, 03 : iPod, 04 : DLNA, 05 : WiFi, 06 : Favorite
  4650. 10 : Account(Spotify), 11 : Album(Spotify), 12 : Playlist(Spotify), 13 : Playlist-C(Spotify)
  4651. 14 : Starred(Spotify), 15 : What\'s New(Spotify), 16 : Track(Spotify), 17 : Artist(Spotify)
  4652. 18 : Play(Spotify), 19 : Search(Spotify), 1A : Folder(Spotify)
  4653. FF : None
  4654. bb : Icon on Right of Title Bar
  4655. 00 : DLNA, 01 : Favorite, 02 : vTuner, 03 : SiriusXM, 04 : Pandora, 05 : Rhapsody, 06 : Last.fm,
  4656. 07 : Napster, 08 : Slacker, 09 : Mediafly, 0A : Spotify, 0B : AUPEO!, 0C : radiko, 0D : e-onkyo,
  4657. 0E : TuneIn Radio, 0F : MP3tunes, 10 : Simfy, 11:Home Media
  4658. FF : None
  4659. ss : Status Info
  4660. 00 : None, 01 : Connecting, 02 : Acquiring License, 03 : Buffering
  4661. 04 : Cannot Play, 05 : Searching, 06 : Profile update, 07 : Operation disabled
  4662. 08 : Server Start-up, 09 : Song rated as Favorite, 0A : Song banned from station,
  4663. 0B : Authentication Failed, 0C : Spotify Paused(max 1 device), 0D : Track Not Available, 0E : Cannot Skip
  4664. nnn...nnn : Character of Title Bar (variable-length, 64 Unicode letters [UTF-8 encoded] max)',
  4665. 'name' => 'None'
  4666. },
  4667. }
  4668. },
  4669. 'NDS',
  4670. {
  4671. 'description' => 'NET Connection/USB Device Status',
  4672. 'name' => 'net-usb-device-status',
  4673. 'values' => {
  4674. 'nfr',
  4675. {
  4676. 'description' =>
  4677. 'NET Connection/USB Device Status (3 letters)
  4678. n -> NET Connection status: \"-\": no connection, \"E\": Ether, \"W\": Wireless
  4679. f -> Front USB(USB1) Device Status: \"-\": no device, \"i\": iPod/iPhone,
  4680. \"M\": Memory/NAS, \"W\": Wireless Adaptor, \"B\": Bluetooth Adaptor,
  4681. \"G\": Google USB, \"x\": disable
  4682. r -> Rear USB(USB2) Device Status: \"-\": no device, \"i\": iPod/iPhone,
  4683. \"M\": Memory/NAS, \"W\": Wireless Adaptor, \"B\": Bluetooth Adaptor,
  4684. \"G\": Google USB, \"x\": disable',
  4685. 'name' => 'None'
  4686. },
  4687. 'QSTN',
  4688. {
  4689. 'description' => 'gets the Net/USB Status',
  4690. 'name' => 'query'
  4691. },
  4692. }
  4693. },
  4694. 'NMS',
  4695. {
  4696. 'description' => 'NET/USB Menu Status',
  4697. 'name' => 'net-usb-menu-status',
  4698. 'values' => {
  4699. 'maabbstii',
  4700. {
  4701. 'description' => 'NET/USB Menu Status (7 letters)
  4702. m -> Track Menu: \"\"M\"\": Menu is enable, \"\"x\"\": Menu is disable
  4703. aa -> F1 button icon (Positive Feed or Mark/Unmark)
  4704. bb -> F2 button icon (Negative Feed)
  4705. aa or bb : \"\"xx\"\":disable, \"\"01\"\":Like, \"\"02\"\":don\'t like, \"\"03\"\":Love, \"\"04\"\":Ban,
  4706. \"\"05\"\":episode, \"\"06\"\":ratings, \"\"07\"\":Ban(black), \"\"08\"\":Ban(white),
  4707. \"\"09\"\":Favorite(black), \"\"0A\"\":Favorite(white), \"\"0B\"\":Favorite(yellow)
  4708. s -> Time Seek \"\"S\"\": Time Seek is enable \"\"x\"\": Time Seek is disable
  4709. t -> Time Display \"\"1\"\": Elapsed Time/Total Time, \"\"2\"\": Elapsed Time, \"\"x\"\": disable
  4710. ii-> Service icon
  4711. ii : \"\"00\"\":DLNA, \"\"01\"\":My Favorite, \"\"02\"\":vTuner, \"\"03\"\":SiriusXM, \"\"04\"\":Pandora,
  4712. \"\"05\"\":Rhapsody, \"\"06\"\":Last.fm, \"\"08\"\":Slacker, \"\"0A\"\":Spotify, \"\"0B\"\":AUPEO!,
  4713. \"\"0C\"\":radiko, \"\"0D\"\":e-onkyo, \"\"0E\"\":TuneIn, \"\"0F\"\":MP3tunes, \"\"10\"\":Simfy,
  4714. \"\"11\"\":Home Media, \"\"F0\"\": USB Front, \"\"F1: USB Rear, \"\"F2\"\":Internet Radio
  4715. \"\"F3\"\":NET, \"\"F4\"\":Bluetooth',
  4716. 'name' => 'None'
  4717. },
  4718. }
  4719. },
  4720. 'NJA',
  4721. {
  4722. 'description' =>
  4723. 'NET/USB Jacket Art {When Jacket Art is available and Output for Network Control Only}',
  4724. 'name' => 'net-usb-jacket-art',
  4725. 'values' => {
  4726. 'tp{xx}{xx}{xx}{xx}{xx}{xx}',
  4727. {
  4728. 'description' =>
  4729. 'NET/USB Jacket Art/Album Art Data\nt-> Image type 0:BMP,1:JPEG\np-> Packet flag 0:Start, 1:Next, 2:End\nxxxxxxxxxxxxxx -> Jacket/Album Art Data {valiable length, 1024 ASCII HEX letters max}',
  4730. 'name' => 'tp-xx-xx-xx-xx-xx-xx'
  4731. },
  4732. 'DIS',
  4733. {
  4734. 'description' => 'sets Jacket Art disable',
  4735. 'name' => 'off'
  4736. },
  4737. 'ENA',
  4738. {
  4739. 'description' => 'sets Jacket Art enable',
  4740. 'name' => 'on'
  4741. },
  4742. 'BMP',
  4743. {
  4744. 'description' => 'sets Jacket Art enable and type BMP',
  4745. 'name' => 'bmp'
  4746. },
  4747. 'LINK',
  4748. {
  4749. 'description' => 'sets Jacket Art enable and type LINK',
  4750. 'name' => 'link'
  4751. },
  4752. 'UP',
  4753. {
  4754. 'description' => 'sets Jacket Art Wrap-Around up',
  4755. 'name' => 'up'
  4756. },
  4757. 'QSTN',
  4758. {
  4759. 'description' => 'gets Jacket Art enable/disable',
  4760. 'name' => 'query'
  4761. }
  4762. }
  4763. },
  4764. 'NSB',
  4765. {
  4766. 'description' =>
  4767. 'Network Standby Settings (for Network Control Only and Available in AVR is PowerOn)',
  4768. 'name' => 'network-standby',
  4769. 'values' => {
  4770. 'OFF',
  4771. {
  4772. 'description' => 'sets Network Standby is Off',
  4773. 'name' => 'off'
  4774. },
  4775. 'ON',
  4776. {
  4777. 'description' => 'sets Network Standby is On',
  4778. 'name' => 'on'
  4779. },
  4780. 'QSTN',
  4781. {
  4782. 'description' => 'gets Network Standby Setting',
  4783. 'name' => 'query'
  4784. },
  4785. }
  4786. },
  4787. 'NSV',
  4788. {
  4789. 'description' => 'NET Service{for Network Control Only}',
  4790. 'name' => 'net-service',
  4791. 'values' => {
  4792. '00',
  4793. {
  4794. 'description' => 'Music Server (DLNA)',
  4795. 'name' => 'DLNA'
  4796. },
  4797. '01',
  4798. {
  4799. 'description' => 'My Favorites',
  4800. 'name' => [ 'My_Favorites', 'Favorite' ]
  4801. },
  4802. '02',
  4803. {
  4804. 'description' => 'vTuner',
  4805. 'name' => 'vTuner'
  4806. },
  4807. '03',
  4808. {
  4809. 'description' => 'SiriusXM Internet Radio',
  4810. 'name' => [ 'SiriusXM_Internet_Radio', 'SIRIUS' ]
  4811. },
  4812. '04',
  4813. {
  4814. 'description' => 'Pandora Internet Radio',
  4815. 'name' => [ 'Pandora_Internet_Radio', 'Pandora' ]
  4816. },
  4817. '05',
  4818. {
  4819. 'description' => 'Rhapsody',
  4820. 'name' => 'Rhapsody'
  4821. },
  4822. '06',
  4823. {
  4824. 'description' => 'Last.fm Internet Radio',
  4825. 'name' => [ 'Last.fm_Internet_Radio', 'Last.fm' ]
  4826. },
  4827. '07',
  4828. {
  4829. 'description' => 'Napster',
  4830. 'name' => 'Napster'
  4831. },
  4832. '08',
  4833. {
  4834. 'description' => 'Slacker Personal Radio',
  4835. 'name' => [ 'Slacker_Personal_Radio', 'Slacker' ]
  4836. },
  4837. '09',
  4838. {
  4839. 'description' => 'Mediafly',
  4840. 'name' => 'Mediafly'
  4841. },
  4842. '0A',
  4843. {
  4844. 'description' => 'Spotify',
  4845. 'name' => 'Spotify'
  4846. },
  4847. '0B',
  4848. {
  4849. 'description' => 'AUPEO! PERSONAL RADIO',
  4850. 'name' => [ 'AUPEO!_PERSONAL_RADIO', 'AUPEO!' ]
  4851. },
  4852. '0C',
  4853. {
  4854. 'description' => 'radiko.jp',
  4855. 'name' => [ 'radiko.jp', 'radiko' ]
  4856. },
  4857. '0D',
  4858. {
  4859. 'description' => 'e-onkyo music',
  4860. 'name' => [ 'e-onkyo_music', 'e-onkyo' ]
  4861. },
  4862. '0E',
  4863. {
  4864. 'description' => 'TuneIn',
  4865. 'name' => 'TuneIn'
  4866. },
  4867. '0F',
  4868. {
  4869. 'description' => 'MP3tunes',
  4870. 'name' => 'MP3tunes'
  4871. },
  4872. '10',
  4873. {
  4874. 'description' => 'simfy',
  4875. 'name' => 'simfy'
  4876. },
  4877. '11',
  4878. {
  4879. 'description' => 'Home Media',
  4880. 'name' => 'Home_Media'
  4881. },
  4882. }
  4883. },
  4884. 'NKY',
  4885. {
  4886. 'description' => 'NET Keyboard{for Network Control Only}',
  4887. 'name' => 'net-keyboard',
  4888. 'values' => {
  4889. 'll',
  4890. {
  4891. 'description' =>
  4892. 'waiting Keyboard Input\nll -> category\n 00: Off { Exit Keyboard Input }\n 01: User Name\n 02: Password\n 03: Artist Name\n 04: Album Name\n 05: Song Name\n 06: Station Name\n 07: Tag Name\n 08: Artist or Song\n 09: Episode Name\n 0A: Pin Code {some digit Number [0-9}\n 0B: User Name {available ISO 8859-1 character set}\n 0C: Password {available ISO 8859-1 character set}',
  4893. 'name' => 'll'
  4894. },
  4895. 'nnnnnnnnn',
  4896. {
  4897. 'description' =>
  4898. 'set Keyboard Input letter\n"nnnnnnnn" is variable-length, 128 Unicode letters [UTF-8 encoded] max',
  4899. 'name' => 'None'
  4900. }
  4901. }
  4902. },
  4903. 'NPU',
  4904. {
  4905. 'description' => 'NET Popup Message{for Network Control Only}',
  4906. 'name' => 'net-popup-message',
  4907. 'values' => {
  4908. 'xaaa\u2026aaaybbb\u2026bbb',
  4909. {
  4910. 'description' =>
  4911. "x -> Popup Display Type\n 'T' => Popup text is top\n 'B' => Popup text is bottom\n 'L' => Popup text is list format\n\naaa...aaa -> Popup Title, Massage\n when x = 'T' or 'B'\n Top Title [0x00] Popup Title [0x00] Popup Message [0x00]\n {valiable-length Unicode letter [UTF-8 encoded] }\n\n when x = 'L'\n Top Title [0x00] Item Title 1 [0x00] Item Parameter 1 [0x00] ... [0x00] Item Title 6 [0x00] Item Parameter 6 [0x00]\n {valiable-length Unicode letter [UTF-8 encoded] }\n\ny -> Cursor Position on button\n '0' : Button is not Displayed\n '1' : Cursor is on the button 1\n '2' : Cursor is on the button 2\n\nbbb...bbb -> Text of Button\n Text of Button 1 [0x00] Text of Button 2 [0x00]\n {valiable-length Unicode letter [UTF-8 encoded] }",
  4912. 'name' => 'None'
  4913. }
  4914. }
  4915. },
  4916. 'NMD',
  4917. {
  4918. 'description' => 'iPod Mode Change {with USB Connection Only}',
  4919. 'name' => 'ipod-mode-change',
  4920. 'values' => {
  4921. 'STD',
  4922. {
  4923. 'description' => 'Standerd Mode',
  4924. 'name' => 'std'
  4925. },
  4926. 'EXT',
  4927. {
  4928. 'description' => 'Extend Mode{If available}',
  4929. 'name' => 'ext'
  4930. },
  4931. 'VDC',
  4932. {
  4933. 'description' => 'Video Contents in Extended Mode',
  4934. 'name' => 'vdc'
  4935. },
  4936. 'QSTN',
  4937. {
  4938. 'description' => 'gets iPod Mode Status',
  4939. 'name' => 'query'
  4940. }
  4941. }
  4942. },
  4943. 'CCD',
  4944. {
  4945. 'description' => 'CD Player Operation Command',
  4946. 'name' => 'cd-player',
  4947. 'values' => {
  4948. 'POWER',
  4949. {
  4950. 'description' => 'POWER ON/OFF',
  4951. 'name' => 'power'
  4952. },
  4953. 'TRACK',
  4954. { 'description' => 'TRACK+', 'name' => 'track' },
  4955. 'PLAY',
  4956. { 'description' => 'PLAY', 'name' => 'play' },
  4957. 'STOP',
  4958. { 'description' => 'STOP', 'name' => 'stop' },
  4959. 'PAUSE',
  4960. { 'description' => 'PAUSE', 'name' => 'pause' },
  4961. 'SKIP.F',
  4962. { 'description' => '>>I', 'name' => 'skip-f' },
  4963. 'SKIP.R',
  4964. { 'description' => 'I<<', 'name' => 'skip-r' },
  4965. 'MEMORY',
  4966. { 'description' => 'MEMORY', 'name' => 'memory' },
  4967. 'CLEAR',
  4968. { 'description' => 'CLEAR', 'name' => 'clear' },
  4969. 'REPEAT',
  4970. { 'description' => 'REPEAT', 'name' => 'repeat' },
  4971. 'RANDOM',
  4972. { 'description' => 'RANDOM', 'name' => 'random' },
  4973. 'DISP',
  4974. { 'description' => 'DISPLAY', 'name' => 'disp' },
  4975. 'D.MODE',
  4976. { 'description' => 'D.MODE', 'name' => 'd-mode' },
  4977. 'FF',
  4978. { 'description' => 'FF >>', 'name' => 'ff' },
  4979. 'REW',
  4980. { 'description' => 'REW <<', 'name' => 'rew' },
  4981. 'OP/CL',
  4982. {
  4983. 'description' => 'OPEN/CLOSE',
  4984. 'name' => 'op-cl'
  4985. },
  4986. '1',
  4987. { 'description' => '1.0', 'name' => '1' },
  4988. '2',
  4989. { 'description' => '2.0', 'name' => '2' },
  4990. '3',
  4991. { 'description' => '3.0', 'name' => '3' },
  4992. '4',
  4993. { 'description' => '4.0', 'name' => '4' },
  4994. '5',
  4995. { 'description' => '5.0', 'name' => '5' },
  4996. '6',
  4997. { 'description' => '6.0', 'name' => '6' },
  4998. '7',
  4999. { 'description' => '7.0', 'name' => '7' },
  5000. '8',
  5001. { 'description' => '8.0', 'name' => '8' },
  5002. '9',
  5003. { 'description' => '9.0', 'name' => '9' },
  5004. '0',
  5005. { 'description' => '0.0', 'name' => '0' },
  5006. '10',
  5007. { 'description' => '10.0', 'name' => '10' },
  5008. '+10',
  5009. { 'description' => '+10', 'name' => '10' },
  5010. 'D.SKIP',
  5011. { 'description' => 'DISC +', 'name' => 'd-skip' },
  5012. 'DISC.F',
  5013. { 'description' => 'DISC +', 'name' => 'disc-f' },
  5014. 'DISC.R',
  5015. { 'description' => 'DISC -', 'name' => 'disc-r' },
  5016. 'DISC1',
  5017. { 'description' => 'DISC1', 'name' => 'disc1' },
  5018. 'DISC2',
  5019. { 'description' => 'DISC2', 'name' => 'disc2' },
  5020. 'DISC3',
  5021. { 'description' => 'DISC3', 'name' => 'disc3' },
  5022. 'DISC4',
  5023. { 'description' => 'DISC4', 'name' => 'disc4' },
  5024. 'DISC5',
  5025. { 'description' => 'DISC5', 'name' => 'disc5' },
  5026. 'DISC6',
  5027. { 'description' => 'DISC6', 'name' => 'disc6' },
  5028. 'STBY',
  5029. { 'description' => 'STANDBY', 'name' => 'stby' },
  5030. 'PON',
  5031. { 'description' => 'POWER ON', 'name' => 'pon' }
  5032. }
  5033. },
  5034. 'CT1',
  5035. {
  5036. 'description' => 'TAPE1{A} Operation Command',
  5037. 'name' => 'tape1-a',
  5038. 'values' => {
  5039. 'PLAY.F',
  5040. {
  5041. 'description' => 'PLAY >',
  5042. 'name' => 'play-f'
  5043. },
  5044. 'PLAY.R',
  5045. { 'description' => 'PLAY <', 'name' => 'play-r' },
  5046. 'STOP',
  5047. { 'description' => 'STOP', 'name' => 'stop' },
  5048. 'RC/PAU',
  5049. {
  5050. 'description' => 'REC/PAUSE',
  5051. 'name' => 'rc-pau'
  5052. },
  5053. 'FF',
  5054. { 'description' => 'FF >>', 'name' => 'ff' },
  5055. 'REW',
  5056. { 'description' => 'REW <<', 'name' => 'rew' }
  5057. }
  5058. },
  5059. 'CT2',
  5060. {
  5061. 'description' => 'TAPE2{B} Operation Command',
  5062. 'name' => 'tape2-b',
  5063. 'values' => {
  5064. 'PLAY.F',
  5065. {
  5066. 'description' => 'PLAY >',
  5067. 'name' => 'play-f'
  5068. },
  5069. 'PLAY.R',
  5070. { 'description' => 'PLAY <', 'name' => 'play-r' },
  5071. 'STOP',
  5072. { 'description' => 'STOP', 'name' => 'stop' },
  5073. 'RC/PAU',
  5074. {
  5075. 'description' => 'REC/PAUSE',
  5076. 'name' => 'rc-pau'
  5077. },
  5078. 'FF',
  5079. { 'description' => 'FF >>', 'name' => 'ff' },
  5080. 'REW',
  5081. { 'description' => 'REW <<', 'name' => 'rew' },
  5082. 'OP/CL',
  5083. {
  5084. 'description' => 'OPEN/CLOSE',
  5085. 'name' => 'op-cl'
  5086. },
  5087. 'SKIP.F',
  5088. { 'description' => '>>I', 'name' => 'skip-f' },
  5089. 'SKIP.R',
  5090. { 'description' => 'I<<', 'name' => 'skip-r' },
  5091. 'REC',
  5092. { 'description' => 'REC', 'name' => 'rec' }
  5093. }
  5094. },
  5095. 'CEC' => {
  5096. 'description' => 'HDMI CEC',
  5097. 'name' => 'hdmi-cec',
  5098. 'values' => {
  5099. '00',
  5100. {
  5101. 'description' => 'sets off',
  5102. 'name' => 'off'
  5103. },
  5104. '01',
  5105. {
  5106. 'description' => 'sets on',
  5107. 'name' => 'on'
  5108. },
  5109. 'UP',
  5110. {
  5111. 'description' => 'sets HDMI CEC Wrap-Around Up',
  5112. 'name' => 'up'
  5113. },
  5114. 'QSTN',
  5115. {
  5116. 'description' => 'gets HDMI CEC',
  5117. 'name' => 'query'
  5118. },
  5119. }
  5120. },
  5121. 'CEQ',
  5122. {
  5123. 'description' => 'Graphics Equalizer Operation Command',
  5124. 'name' => 'graphics-equalizer',
  5125. 'values' => {
  5126. 'POWER',
  5127. {
  5128. 'description' => 'POWER ON/OFF',
  5129. 'name' => 'power'
  5130. },
  5131. 'PRESET',
  5132. { 'description' => 'PRESET', 'name' => 'preset' }
  5133. }
  5134. },
  5135. 'CDT',
  5136. {
  5137. 'description' => 'DAT Recorder Operation Command',
  5138. 'name' => 'dat-recorder',
  5139. 'values' => {
  5140. 'PLAY',
  5141. { 'description' => 'PLAY', 'name' => 'play' },
  5142. 'RC/PAU',
  5143. {
  5144. 'description' => 'REC/PAUSE',
  5145. 'name' => 'rc-pau'
  5146. },
  5147. 'STOP',
  5148. { 'description' => 'STOP', 'name' => 'stop' },
  5149. 'SKIP.F',
  5150. { 'description' => '>>I', 'name' => 'skip-f' },
  5151. 'SKIP.R',
  5152. { 'description' => 'I<<', 'name' => 'skip-r' },
  5153. 'FF',
  5154. { 'description' => 'FF >>', 'name' => 'ff' },
  5155. 'REW',
  5156. { 'description' => 'REW <<', 'name' => 'rew' }
  5157. }
  5158. },
  5159. 'CDV',
  5160. {
  5161. 'description' =>
  5162. 'DVD Player Operation Command {via RIHD only after TX-NR509}',
  5163. 'name' => 'dvd-player',
  5164. 'values' => {
  5165. 'POWER',
  5166. {
  5167. 'description' => 'POWER ON/OFF',
  5168. 'name' => 'power'
  5169. },
  5170. 'PWRON',
  5171. { 'description' => 'POWER ON', 'name' => 'pwron' },
  5172. 'PWROFF',
  5173. {
  5174. 'description' => 'POWER OFF',
  5175. 'name' => 'pwroff'
  5176. },
  5177. 'PLAY',
  5178. { 'description' => 'PLAY', 'name' => 'play' },
  5179. 'STOP',
  5180. { 'description' => 'STOP', 'name' => 'stop' },
  5181. 'SKIP.F',
  5182. { 'description' => '>>I', 'name' => 'skip-f' },
  5183. 'SKIP.R',
  5184. { 'description' => 'I<<', 'name' => 'skip-r' },
  5185. 'FF',
  5186. { 'description' => 'FF >>', 'name' => 'ff' },
  5187. 'REW',
  5188. { 'description' => 'REW <<', 'name' => 'rew' },
  5189. 'PAUSE',
  5190. { 'description' => 'PAUSE', 'name' => 'pause' },
  5191. 'LASTPLAY',
  5192. {
  5193. 'description' => 'LAST PLAY',
  5194. 'name' => 'lastplay'
  5195. },
  5196. 'SUBTON/OFF',
  5197. {
  5198. 'description' => 'SUBTITLE ON/OFF',
  5199. 'name' => 'subton-off'
  5200. },
  5201. 'SUBTITLE',
  5202. {
  5203. 'description' => 'SUBTITLE',
  5204. 'name' => 'subtitle'
  5205. },
  5206. 'SETUP',
  5207. { 'description' => 'SETUP', 'name' => 'setup' },
  5208. 'TOPMENU',
  5209. { 'description' => 'TOPMENU', 'name' => 'topmenu' },
  5210. 'MENU',
  5211. { 'description' => 'MENU', 'name' => 'menu' },
  5212. 'UP',
  5213. { 'description' => 'UP', 'name' => 'up' },
  5214. 'DOWN',
  5215. { 'description' => 'DOWN', 'name' => 'down' },
  5216. 'LEFT',
  5217. { 'description' => 'LEFT', 'name' => 'left' },
  5218. 'RIGHT',
  5219. { 'description' => 'RIGHT', 'name' => 'right' },
  5220. 'ENTER',
  5221. { 'description' => 'ENTER', 'name' => 'enter' },
  5222. 'RETURN',
  5223. { 'description' => 'RETURN', 'name' => 'return' },
  5224. 'DISC.F',
  5225. { 'description' => 'DISC +', 'name' => 'disc-f' },
  5226. 'DISC.R',
  5227. { 'description' => 'DISC -', 'name' => 'disc-r' },
  5228. 'AUDIO',
  5229. { 'description' => 'AUDIO', 'name' => 'audio' },
  5230. 'RANDOM',
  5231. { 'description' => 'RANDOM', 'name' => 'random' },
  5232. 'OP/CL',
  5233. {
  5234. 'description' => 'OPEN/CLOSE',
  5235. 'name' => 'op-cl'
  5236. },
  5237. 'ANGLE',
  5238. { 'description' => 'ANGLE', 'name' => 'angle' },
  5239. '1',
  5240. { 'description' => '1.0', 'name' => '1' },
  5241. '2',
  5242. { 'description' => '2.0', 'name' => '2' },
  5243. '3',
  5244. { 'description' => '3.0', 'name' => '3' },
  5245. '4',
  5246. { 'description' => '4.0', 'name' => '4' },
  5247. '5',
  5248. { 'description' => '5.0', 'name' => '5' },
  5249. '6',
  5250. { 'description' => '6.0', 'name' => '6' },
  5251. '7',
  5252. { 'description' => '7.0', 'name' => '7' },
  5253. '8',
  5254. { 'description' => '8.0', 'name' => '8' },
  5255. '9',
  5256. { 'description' => '9.0', 'name' => '9' },
  5257. '10',
  5258. { 'description' => '10.0', 'name' => '10' },
  5259. '0',
  5260. { 'description' => '0.0', 'name' => '0' },
  5261. 'SEARCH',
  5262. { 'description' => 'SEARCH', 'name' => 'search' },
  5263. 'DISP',
  5264. { 'description' => 'DISPLAY', 'name' => 'disp' },
  5265. 'REPEAT',
  5266. { 'description' => 'REPEAT', 'name' => 'repeat' },
  5267. 'MEMORY',
  5268. { 'description' => 'MEMORY', 'name' => 'memory' },
  5269. 'CLEAR',
  5270. { 'description' => 'CLEAR', 'name' => 'clear' },
  5271. 'ABR',
  5272. { 'description' => 'A-B REPEAT', 'name' => 'abr' },
  5273. 'STEP.F',
  5274. { 'description' => 'STEP', 'name' => 'step-f' },
  5275. 'STEP.R',
  5276. {
  5277. 'description' => 'STEP BACK',
  5278. 'name' => 'step-r'
  5279. },
  5280. 'SLOW.F',
  5281. { 'description' => 'SLOW', 'name' => 'slow-f' },
  5282. 'SLOW.R',
  5283. {
  5284. 'description' => 'SLOW BACK',
  5285. 'name' => 'slow-r'
  5286. },
  5287. 'ZOOMTG',
  5288. { 'description' => 'ZOOM', 'name' => 'zoomtg' },
  5289. 'ZOOMUP',
  5290. { 'description' => 'ZOOM UP', 'name' => 'zoomup' },
  5291. 'ZOOMDN',
  5292. {
  5293. 'description' => 'ZOOM DOWN',
  5294. 'name' => 'zoomdn'
  5295. },
  5296. 'PROGRE',
  5297. {
  5298. 'description' => 'PROGRESSIVE',
  5299. 'name' => 'progre'
  5300. },
  5301. 'VDOFF',
  5302. {
  5303. 'description' => 'VIDEO ON/OFF',
  5304. 'name' => 'vdoff'
  5305. },
  5306. 'CONMEM',
  5307. {
  5308. 'description' => 'CONDITION MEMORY',
  5309. 'name' => 'conmem'
  5310. },
  5311. 'FUNMEM',
  5312. {
  5313. 'description' => 'FUNCTION MEMORY',
  5314. 'name' => 'funmem'
  5315. },
  5316. 'DISC1',
  5317. { 'description' => 'DISC1', 'name' => 'disc1' },
  5318. 'DISC2',
  5319. { 'description' => 'DISC2', 'name' => 'disc2' },
  5320. 'DISC3',
  5321. { 'description' => 'DISC3', 'name' => 'disc3' },
  5322. 'DISC4',
  5323. { 'description' => 'DISC4', 'name' => 'disc4' },
  5324. 'DISC5',
  5325. { 'description' => 'DISC5', 'name' => 'disc5' },
  5326. 'DISC6',
  5327. { 'description' => 'DISC6', 'name' => 'disc6' },
  5328. 'FOLDUP',
  5329. {
  5330. 'description' => 'FOLDER UP',
  5331. 'name' => 'foldup'
  5332. },
  5333. 'FOLDDN',
  5334. {
  5335. 'description' => 'FOLDER DOWN',
  5336. 'name' => 'folddn'
  5337. },
  5338. 'P.MODE',
  5339. {
  5340. 'description' => 'PLAY MODE',
  5341. 'name' => 'p-mode'
  5342. },
  5343. 'ASCTG',
  5344. {
  5345. 'description' => 'ASPECT{Toggle}',
  5346. 'name' => 'asctg'
  5347. },
  5348. 'CDPCD',
  5349. {
  5350. 'description' => 'CD CHAIN REPEAT',
  5351. 'name' => 'cdpcd'
  5352. },
  5353. 'MSPUP',
  5354. {
  5355. 'description' => 'MULTI SPEED UP',
  5356. 'name' => 'mspup'
  5357. },
  5358. 'MSPDN',
  5359. {
  5360. 'description' => 'MULTI SPEED DOWN',
  5361. 'name' => 'mspdn'
  5362. },
  5363. 'PCT',
  5364. {
  5365. 'description' => 'PICTURE CONTROL',
  5366. 'name' => 'pct'
  5367. },
  5368. 'RSCTG',
  5369. {
  5370. 'description' => 'RESOLUTION{Toggle}',
  5371. 'name' => 'rsctg'
  5372. },
  5373. 'INIT',
  5374. {
  5375. 'description' => 'Return to Factory Settings',
  5376. 'name' => 'init'
  5377. }
  5378. }
  5379. },
  5380. 'CMD',
  5381. {
  5382. 'description' => 'MD Recorder Operation Command',
  5383. 'name' => 'md-recorder',
  5384. 'values' => {
  5385. 'POWER',
  5386. {
  5387. 'description' => 'POWER ON/OFF',
  5388. 'name' => 'power'
  5389. },
  5390. 'PLAY',
  5391. { 'description' => 'PLAY', 'name' => 'play' },
  5392. 'STOP',
  5393. { 'description' => 'STOP', 'name' => 'stop' },
  5394. 'FF',
  5395. { 'description' => 'FF >>', 'name' => 'ff' },
  5396. 'REW',
  5397. { 'description' => 'REW <<', 'name' => 'rew' },
  5398. 'P.MODE',
  5399. {
  5400. 'description' => 'PLAY MODE',
  5401. 'name' => 'p-mode'
  5402. },
  5403. 'SKIP.F',
  5404. { 'description' => '>>I', 'name' => 'skip-f' },
  5405. 'SKIP.R',
  5406. { 'description' => 'I<<', 'name' => 'skip-r' },
  5407. 'PAUSE',
  5408. { 'description' => 'PAUSE', 'name' => 'pause' },
  5409. 'REC',
  5410. { 'description' => 'REC', 'name' => 'rec' },
  5411. 'MEMORY',
  5412. { 'description' => 'MEMORY', 'name' => 'memory' },
  5413. 'DISP',
  5414. { 'description' => 'DISPLAY', 'name' => 'disp' },
  5415. 'SCROLL',
  5416. { 'description' => 'SCROLL', 'name' => 'scroll' },
  5417. 'M.SCAN',
  5418. {
  5419. 'description' => 'MUSIC SCAN',
  5420. 'name' => 'm-scan'
  5421. },
  5422. 'CLEAR',
  5423. { 'description' => 'CLEAR', 'name' => 'clear' },
  5424. 'RANDOM',
  5425. { 'description' => 'RANDOM', 'name' => 'random' },
  5426. 'REPEAT',
  5427. { 'description' => 'REPEAT', 'name' => 'repeat' },
  5428. 'ENTER',
  5429. { 'description' => 'ENTER', 'name' => 'enter' },
  5430. 'EJECT',
  5431. { 'description' => 'EJECT', 'name' => 'eject' },
  5432. '1',
  5433. { 'description' => '1.0', 'name' => '1' },
  5434. '2',
  5435. { 'description' => '2.0', 'name' => '2' },
  5436. '3',
  5437. { 'description' => '3.0', 'name' => '3' },
  5438. '4',
  5439. { 'description' => '4.0', 'name' => '4' },
  5440. '5',
  5441. { 'description' => '5.0', 'name' => '5' },
  5442. '6',
  5443. { 'description' => '6.0', 'name' => '6' },
  5444. '7',
  5445. { 'description' => '7.0', 'name' => '7' },
  5446. '8',
  5447. { 'description' => '8.0', 'name' => '8' },
  5448. '9',
  5449. { 'description' => '9.0', 'name' => '9' },
  5450. '10/0',
  5451. { 'description' => '10/0', 'name' => '10-0' },
  5452. 'nn/nnn',
  5453. { 'description' => '--/---', 'name' => 'None' },
  5454. 'NAME',
  5455. { 'description' => 'NAME', 'name' => 'name' },
  5456. 'GROUP',
  5457. { 'description' => 'GROUP', 'name' => 'group' },
  5458. 'STBY',
  5459. { 'description' => 'STANDBY', 'name' => 'stby' }
  5460. }
  5461. },
  5462. 'CCR',
  5463. {
  5464. 'description' => 'CD Recorder Operation Command',
  5465. 'name' => 'cd-recorder',
  5466. 'values' => {
  5467. 'POWER',
  5468. {
  5469. 'description' => 'POWER ON/OFF',
  5470. 'name' => 'power'
  5471. },
  5472. 'P.MODE',
  5473. {
  5474. 'description' => 'PLAY MODE',
  5475. 'name' => 'p-mode'
  5476. },
  5477. 'PLAY',
  5478. { 'description' => 'PLAY', 'name' => 'play' },
  5479. 'STOP',
  5480. { 'description' => 'STOP', 'name' => 'stop' },
  5481. 'SKIP.F',
  5482. { 'description' => '>>I', 'name' => 'skip-f' },
  5483. 'SKIP.R',
  5484. { 'description' => 'I<<', 'name' => 'skip-r' },
  5485. 'PAUSE',
  5486. { 'description' => 'PAUSE', 'name' => 'pause' },
  5487. 'REC',
  5488. { 'description' => 'REC', 'name' => 'rec' },
  5489. 'CLEAR',
  5490. { 'description' => 'CLEAR', 'name' => 'clear' },
  5491. 'REPEAT',
  5492. { 'description' => 'REPEAT', 'name' => 'repeat' },
  5493. '1',
  5494. { 'description' => '1.0', 'name' => '1' },
  5495. '2',
  5496. { 'description' => '2.0', 'name' => '2' },
  5497. '3',
  5498. { 'description' => '3.0', 'name' => '3' },
  5499. '4',
  5500. { 'description' => '4.0', 'name' => '4' },
  5501. '5',
  5502. { 'description' => '5.0', 'name' => '5' },
  5503. '6',
  5504. { 'description' => '6.0', 'name' => '6' },
  5505. '7',
  5506. { 'description' => '7.0', 'name' => '7' },
  5507. '8',
  5508. { 'description' => '8.0', 'name' => '8' },
  5509. '9',
  5510. { 'description' => '9.0', 'name' => '9' },
  5511. '10/0',
  5512. { 'description' => '10/0', 'name' => '10-0' },
  5513. 'nn/nnn',
  5514. { 'description' => '--/---', 'name' => 'None' },
  5515. 'SCROLL',
  5516. { 'description' => 'SCROLL', 'name' => 'scroll' },
  5517. 'OP/CL',
  5518. {
  5519. 'description' => 'OPEN/CLOSE',
  5520. 'name' => 'op-cl'
  5521. },
  5522. 'DISP',
  5523. { 'description' => 'DISPLAY', 'name' => 'disp' },
  5524. 'RANDOM',
  5525. { 'description' => 'RANDOM', 'name' => 'random' },
  5526. 'MEMORY',
  5527. { 'description' => 'MEMORY', 'name' => 'memory' },
  5528. 'FF',
  5529. { 'description' => 'FF', 'name' => 'ff' },
  5530. 'REW',
  5531. { 'description' => 'REW', 'name' => 'rew' },
  5532. 'STBY',
  5533. { 'description' => 'STANDBY', 'name' => 'stby' }
  5534. }
  5535. },
  5536. 'CPT',
  5537. {
  5538. 'description' => 'Universal PORT Operation Command',
  5539. 'name' => 'universal-port',
  5540. 'values' => {
  5541. 'SETUP',
  5542. { 'description' => 'SETUP', 'name' => 'setup' },
  5543. 'UP',
  5544. { 'description' => 'UP/Tuning Up', 'name' => 'up' },
  5545. 'DOWN',
  5546. {
  5547. 'description' => 'DOWN/Tuning Down',
  5548. 'name' => 'down'
  5549. },
  5550. 'LEFT',
  5551. {
  5552. 'description' => 'LEFT/Multicast Down',
  5553. 'name' => 'left'
  5554. },
  5555. 'RIGHT',
  5556. {
  5557. 'description' => 'RIGHT/Multicast Up',
  5558. 'name' => 'right'
  5559. },
  5560. 'ENTER',
  5561. { 'description' => 'ENTER', 'name' => 'enter' },
  5562. 'RETURN',
  5563. { 'description' => 'RETURN', 'name' => 'return' },
  5564. 'DISP',
  5565. { 'description' => 'DISPLAY', 'name' => 'disp' },
  5566. 'PLAY',
  5567. { 'description' => 'PLAY/BAND', 'name' => 'play' },
  5568. 'STOP',
  5569. { 'description' => 'STOP', 'name' => 'stop' },
  5570. 'PAUSE',
  5571. { 'description' => 'PAUSE', 'name' => 'pause' },
  5572. 'SKIP.F',
  5573. { 'description' => '>>I', 'name' => 'skip-f' },
  5574. 'SKIP.R',
  5575. { 'description' => 'I<<', 'name' => 'skip-r' },
  5576. 'FF',
  5577. { 'description' => 'FF >>', 'name' => 'ff' },
  5578. 'REW',
  5579. { 'description' => 'REW <<', 'name' => 'rew' },
  5580. 'REPEAT',
  5581. { 'description' => 'REPEAT', 'name' => 'repeat' },
  5582. 'SHUFFLE',
  5583. { 'description' => 'SHUFFLE', 'name' => 'shuffle' },
  5584. 'PRSUP',
  5585. { 'description' => 'PRESET UP', 'name' => 'prsup' },
  5586. 'PRSDN',
  5587. {
  5588. 'description' => 'PRESET DOWN',
  5589. 'name' => 'prsdn'
  5590. },
  5591. '0',
  5592. { 'description' => '0.0', 'name' => '0' },
  5593. '1',
  5594. { 'description' => '1.0', 'name' => '1' },
  5595. '2',
  5596. { 'description' => '2.0', 'name' => '2' },
  5597. '3',
  5598. { 'description' => '3.0', 'name' => '3' },
  5599. '4',
  5600. { 'description' => '4.0', 'name' => '4' },
  5601. '5',
  5602. { 'description' => '5.0', 'name' => '5' },
  5603. '6',
  5604. { 'description' => '6.0', 'name' => '6' },
  5605. '7',
  5606. { 'description' => '7.0', 'name' => '7' },
  5607. '8',
  5608. { 'description' => '8.0', 'name' => '8' },
  5609. '9',
  5610. { 'description' => '9.0', 'name' => '9' },
  5611. '10',
  5612. {
  5613. 'description' => '10/+10/Direct Tuning',
  5614. 'name' => '10'
  5615. },
  5616. 'MODE',
  5617. { 'description' => 'MODE', 'name' => 'mode' }
  5618. }
  5619. },
  5620. 'IAT',
  5621. {
  5622. 'description' => 'iPod Artist Name Info {Universal Port Dock Only}',
  5623. 'name' => 'ipod-artist-name-info',
  5624. 'values' => {
  5625. 'nnnnnnnnnn',
  5626. {
  5627. 'description' =>
  5628. 'iPod Artist Name {variable-length, 64 letters max ASCII letter only}',
  5629. 'name' => 'None'
  5630. },
  5631. 'QSTN',
  5632. {
  5633. 'description' => 'gets iPod Artist Name',
  5634. 'name' => 'query'
  5635. }
  5636. }
  5637. },
  5638. 'IAL',
  5639. {
  5640. 'description' => 'iPod Album Name Info {Universal Port Dock Only}',
  5641. 'name' => 'ipod-album-name-info',
  5642. 'values' => {
  5643. 'nnnnnnn',
  5644. {
  5645. 'description' =>
  5646. 'iPod Album Name {variable-length, 64 letters max ASCII letter only}',
  5647. 'name' => 'None'
  5648. },
  5649. 'QSTN',
  5650. {
  5651. 'description' => 'gets iPod Album Name',
  5652. 'name' => 'query'
  5653. }
  5654. }
  5655. },
  5656. 'ITI',
  5657. {
  5658. 'description' => 'iPod Title Name {Universal Port Dock Only}',
  5659. 'name' => 'ipod-title-name',
  5660. 'values' => {
  5661. 'nnnnnnnnnn',
  5662. {
  5663. 'description' =>
  5664. 'iPod Title Name {variable-length, 64 letters max ASCII letter only}',
  5665. 'name' => 'None'
  5666. },
  5667. 'QSTN',
  5668. {
  5669. 'description' => 'gets iPod Title Name',
  5670. 'name' => 'query'
  5671. }
  5672. }
  5673. },
  5674. 'ITM',
  5675. {
  5676. 'description' => 'iPod Time Info {Universal Port Dock Only}',
  5677. 'name' => 'ipod-time-info',
  5678. 'values' => {
  5679. 'mm:ss/mm:ss',
  5680. {
  5681. 'description' =>
  5682. 'iPod Time Info {Elapsed time/Track Time Max 99:59}',
  5683. 'name' => 'mm-ss-mm-ss'
  5684. },
  5685. 'QSTN',
  5686. {
  5687. 'description' => 'gets iPod Time Info',
  5688. 'name' => 'query'
  5689. }
  5690. }
  5691. },
  5692. 'ITR',
  5693. {
  5694. 'description' => 'iPod Track Info {Universal Port Dock Only}',
  5695. 'name' => 'ipod-track-info',
  5696. 'values' => {
  5697. 'cccc/tttt',
  5698. {
  5699. 'description' =>
  5700. 'iPod Track Info {Current Track/Toral Track Max 9999}',
  5701. 'name' => 'cccc-tttt'
  5702. },
  5703. 'QSTN',
  5704. {
  5705. 'description' => 'gets iPod Time Info',
  5706. 'name' => 'query'
  5707. }
  5708. }
  5709. },
  5710. 'IST',
  5711. {
  5712. 'description' => 'iPod Play Status {Universal Port Dock Only}',
  5713. 'name' => 'ipod-play-status',
  5714. 'values' => {
  5715. 'prs',
  5716. {
  5717. 'description' =>
  5718. 'iPod Play Status {3 letters}\np -> Play Status "S" STOP, "P" Play, "p" Pause, "F" FF, "R" FR\nr -> Repeat Status "-" no Repeat, "R" All Repeat, "1" Repeat 1,\ns -> Shuffle Status "-" no Shuffle, "S" Shuffle, "A" Album Shuffle',
  5719. 'name' => 'prs'
  5720. },
  5721. 'QSTN',
  5722. {
  5723. 'description' => 'gets the iPod Play Status',
  5724. 'name' => 'query'
  5725. }
  5726. }
  5727. },
  5728. 'ILS',
  5729. {
  5730. 'description' =>
  5731. 'iPod List Info {Universal Port Dock Extend Mode Only}',
  5732. 'name' => 'ipod-list-info',
  5733. 'values' => {
  5734. 'tlpnnnnnnnnnn',
  5735. {
  5736. 'description' =>
  5737. 'iPod List Info\nt ->Information Type {A : ASCII letter, C : Cursor Info}\nwhen t = A,\n l ->Line Info {0-9 : 1st to 10th Line}\n nnnnnnnnn:Listed data {variable-length, 64 letters max ASCII letter only}\n p ->Property {- : no}\nwhen t = C,\n l ->Cursor Position {0-9 : 1st to 10th Line, - : No Cursor}\n p ->Update Type {P : Page Infomation Update { Page Clear or Disable List Info} , C : Cursor Position Update}',
  5738. 'name' => 'None'
  5739. }
  5740. }
  5741. },
  5742. 'IMD',
  5743. {
  5744. 'description' => 'iPod Mode Change {Universal Port Dock Only}',
  5745. 'name' => 'ipod-mode-change',
  5746. 'values' => {
  5747. 'STD',
  5748. {
  5749. 'description' => 'Standerd Mode',
  5750. 'name' => 'std'
  5751. },
  5752. 'EXT',
  5753. {
  5754. 'description' => 'Extend Mode{If available}',
  5755. 'name' => 'ext'
  5756. },
  5757. 'VDC',
  5758. {
  5759. 'description' => 'Video Contents in Extended Mode',
  5760. 'name' => 'vdc'
  5761. },
  5762. 'QSTN',
  5763. {
  5764. 'description' => 'gets iPod Mode Status',
  5765. 'name' => 'query'
  5766. }
  5767. }
  5768. },
  5769. 'UTN',
  5770. {
  5771. 'description' => 'Tuning Command {Universal Port Dock Only}',
  5772. 'name' => 'tunerFrequency',
  5773. 'values' => {
  5774. 'nnnnn',
  5775. {
  5776. 'description' =>
  5777. 'sets Directly Tuning Frequency {FM nnn.nn MHz / AM nnnnn kHz}',
  5778. 'name' => 'None'
  5779. },
  5780. 'UP',
  5781. {
  5782. 'description' => 'sets Tuning Frequency Wrap-Around Up',
  5783. 'name' => 'up'
  5784. },
  5785. 'DOWN',
  5786. {
  5787. 'description' => 'sets Tuning Frequency Wrap-Around Down',
  5788. 'name' => 'down'
  5789. },
  5790. 'QSTN',
  5791. {
  5792. 'description' => 'gets The Tuning Frequency',
  5793. 'name' => 'query'
  5794. }
  5795. }
  5796. },
  5797. 'UPR',
  5798. {
  5799. 'description' => 'DAB Preset Command {Universal Port Dock Only}',
  5800. 'name' => 'dab-preset',
  5801. 'values' => {
  5802. '{1,40}',
  5803. {
  5804. 'description' =>
  5805. 'sets Preset No. 1 - 40 { In hexadecimal representation}',
  5806. 'name' => 'no-1-40'
  5807. },
  5808. 'UP',
  5809. {
  5810. 'description' => 'sets Preset No. Wrap-Around Up',
  5811. 'name' => 'up'
  5812. },
  5813. 'DOWN',
  5814. {
  5815. 'description' => 'sets Preset No. Wrap-Around Down',
  5816. 'name' => 'down'
  5817. },
  5818. 'QSTN',
  5819. {
  5820. 'description' => 'gets The Preset No.',
  5821. 'name' => 'query'
  5822. }
  5823. }
  5824. },
  5825. 'UPM',
  5826. {
  5827. 'description' => 'Preset Memory Command {Universal Port Dock Only}',
  5828. 'name' => 'preset-memory',
  5829. 'values' => {
  5830. '{1,40}',
  5831. {
  5832. 'description' =>
  5833. 'Memory Preset No. 1 - 40 { In hexadecimal representation}',
  5834. 'name' => 'None'
  5835. }
  5836. }
  5837. },
  5838. 'UHP',
  5839. {
  5840. 'description' =>
  5841. 'HD Radio Channel Program Command {Universal Port Dock Only}',
  5842. 'name' => 'hd-radio-channel-program',
  5843. 'values' => {
  5844. '{1,8}',
  5845. {
  5846. 'description' => 'sets directly HD Radio Channel Program',
  5847. 'name' => 'directly'
  5848. },
  5849. 'QSTN',
  5850. {
  5851. 'description' => 'gets HD Radio Channel Program',
  5852. 'name' => 'query'
  5853. }
  5854. }
  5855. },
  5856. 'UHB',
  5857. {
  5858. 'description' =>
  5859. 'HD Radio Blend Mode Command {Universal Port Dock Only}',
  5860. 'name' => 'hd-radio-blend-mode',
  5861. 'values' => {
  5862. '00',
  5863. {
  5864. 'description' => 'sets HD Radio Blend Mode "Auto"',
  5865. 'name' => 'auto'
  5866. },
  5867. '01',
  5868. {
  5869. 'description' => 'sets HD Radio Blend Mode "Analog"',
  5870. 'name' => 'analog'
  5871. },
  5872. 'QSTN',
  5873. {
  5874. 'description' => 'gets the HD Radio Blend Mode Status',
  5875. 'name' => 'query'
  5876. }
  5877. }
  5878. },
  5879. 'UHA',
  5880. {
  5881. 'description' =>
  5882. 'HD Radio Artist Name Info {Universal Port Dock Only}',
  5883. 'name' => 'hd-radio-artist-name-info',
  5884. 'values' => {
  5885. 'nnnnnnnnnn',
  5886. {
  5887. 'description' =>
  5888. 'HD Radio Artist Name {variable-length, 64 letters max}',
  5889. 'name' => 'None'
  5890. },
  5891. 'QSTN',
  5892. {
  5893. 'description' => 'gets HD Radio Artist Name',
  5894. 'name' => 'query'
  5895. }
  5896. }
  5897. },
  5898. 'UHC',
  5899. {
  5900. 'description' =>
  5901. 'HD Radio Channel Name Info {Universal Port Dock Only}',
  5902. 'name' => 'hd-radio-channel-name-info',
  5903. 'values' => {
  5904. 'nnnnnnn',
  5905. {
  5906. 'description' =>
  5907. 'HD Radio Channel Name {Station Name} {7lettters}',
  5908. 'name' => 'None'
  5909. },
  5910. 'QSTN',
  5911. {
  5912. 'description' => 'gets HD Radio Channel Name',
  5913. 'name' => 'query'
  5914. }
  5915. }
  5916. },
  5917. 'UHT',
  5918. {
  5919. 'description' => 'HD Radio Title Info {Universal Port Dock Only}',
  5920. 'name' => 'hd-radio-title-info',
  5921. 'values' => {
  5922. 'nnnnnnnnnn',
  5923. {
  5924. 'description' =>
  5925. 'HD Radio Title {variable-length, 64 letters max}',
  5926. 'name' => 'None'
  5927. },
  5928. 'QSTN',
  5929. {
  5930. 'description' => 'gets HD Radio Title',
  5931. 'name' => 'query'
  5932. }
  5933. }
  5934. },
  5935. 'UHD',
  5936. {
  5937. 'description' => 'HD Radio Detail Info {Universal Port Dock Only}',
  5938. 'name' => 'hd-radio-detail-info',
  5939. 'values' => {
  5940. 'nnnnnnnnnn',
  5941. {
  5942. 'description' => 'HD Radio Title',
  5943. 'name' => 'None'
  5944. },
  5945. 'QSTN',
  5946. {
  5947. 'description' => 'gets HD Radio Title',
  5948. 'name' => 'query'
  5949. }
  5950. }
  5951. },
  5952. 'UHS',
  5953. {
  5954. 'description' => 'HD Radio Tuner Status {Universal Port Dock Only}',
  5955. 'name' => 'hd-radio-tuner-status',
  5956. 'values' => {
  5957. 'mmnnoo',
  5958. {
  5959. 'description' =>
  5960. 'HD Radio Tuner Status {3 bytes}\nmm -> "00" not HD, "01" HD\nnn -> current Program "01"-"08"\noo -> receivable Program {8 bits are represented in hexadecimal notation. Each bit shows receivable or not.}',
  5961. 'name' => 'mmnnoo'
  5962. },
  5963. 'QSTN',
  5964. {
  5965. 'description' => 'gets the HD Radio Tuner Status',
  5966. 'name' => 'query'
  5967. }
  5968. }
  5969. },
  5970. 'UDS',
  5971. {
  5972. 'description' => 'DAB Station Name {Universal Port Dock Only}',
  5973. 'name' => 'dab-station-name',
  5974. 'values' => {
  5975. 'nnnnnnnnn',
  5976. {
  5977. 'description' => 'Sation Name {9 letters}',
  5978. 'name' => 'None'
  5979. },
  5980. 'QSTN',
  5981. {
  5982. 'description' => 'gets The Tuning Frequency',
  5983. 'name' => 'query'
  5984. }
  5985. }
  5986. },
  5987. 'UDD',
  5988. {
  5989. 'description' => 'DAB Display Info {Universal Port Dock Only}',
  5990. 'name' => 'dab-display-info',
  5991. 'values' => {
  5992. 'PT:nnnnnnnn',
  5993. {
  5994. 'description' => 'DAB Program Type {8 letters}',
  5995. 'name' => 'None'
  5996. },
  5997. 'AT:mmmkbps/nnnnnn',
  5998. {
  5999. 'description' =>
  6000. 'DAB Bitrate & Audio Type {m:Bitrate xxxkbps,n:Audio Type Stereo/Mono}',
  6001. 'name' => 'None'
  6002. },
  6003. 'MN:nnnnnnnnn',
  6004. {
  6005. 'description' => 'DAB Multiplex Name {9 letters}',
  6006. 'name' => 'None'
  6007. },
  6008. 'MF:mmm/nnnn.nnMHz',
  6009. {
  6010. 'description' =>
  6011. 'DAB Multiplex Band ID{mmm} & Freq{nnnn.nnMHz} Info',
  6012. 'name' => 'None'
  6013. },
  6014. 'PT',
  6015. {
  6016. 'description' => 'gets & display DAB Program Info',
  6017. 'name' => 'pt'
  6018. },
  6019. 'AT',
  6020. {
  6021. 'description' => 'gets & display DAB Bitrate & Audio Type',
  6022. 'name' => 'at'
  6023. },
  6024. 'MN',
  6025. {
  6026. 'description' => 'gets & display DAB Multicast Name',
  6027. 'name' => 'mn'
  6028. },
  6029. 'MF',
  6030. {
  6031. 'description' =>
  6032. 'gets & display DAB Multicast Band & Freq Info',
  6033. 'name' => 'mf'
  6034. },
  6035. 'UP',
  6036. {
  6037. 'description' =>
  6038. 'gets & dispaly DAB Infomation Wrap-Around Up',
  6039. 'name' => 'up'
  6040. }
  6041. }
  6042. },
  6043. 'NRI',
  6044. {
  6045. 'description' => 'Get device info in XML format',
  6046. 'name' => 'net-receiver-information',
  6047. }
  6048. },
  6049. '2' => {
  6050. 'ZPW',
  6051. {
  6052. 'description' => 'Zone2 Power Command',
  6053. 'name' => 'power',
  6054. 'values' => {
  6055. '00',
  6056. {
  6057. 'description' => 'sets Zone2 Standby',
  6058. 'name' => 'off'
  6059. },
  6060. '01',
  6061. {
  6062. 'description' => 'sets Zone2 On',
  6063. 'name' => 'on'
  6064. },
  6065. 'QSTN',
  6066. {
  6067. 'description' => 'gets the Zone2 Power Status',
  6068. 'name' => 'query'
  6069. }
  6070. }
  6071. },
  6072. 'ZMT',
  6073. {
  6074. 'description' => 'Zone2 Muting Command',
  6075. 'name' => 'mute',
  6076. 'values' => {
  6077. '00',
  6078. {
  6079. 'description' => 'sets Zone2 Muting Off',
  6080. 'name' => 'off'
  6081. },
  6082. '01',
  6083. {
  6084. 'description' => 'sets Zone2 Muting On',
  6085. 'name' => 'on'
  6086. },
  6087. 'TG',
  6088. {
  6089. 'description' => 'sets Zone2 Muting Wrap-Around',
  6090. 'name' => 'toggle'
  6091. },
  6092. 'QSTN',
  6093. {
  6094. 'description' => 'gets the Zone2 Muting Status',
  6095. 'name' => 'query'
  6096. }
  6097. }
  6098. },
  6099. 'ZVL',
  6100. {
  6101. 'description' => 'Zone2 Volume Command',
  6102. 'name' => 'volume',
  6103. 'values' => {
  6104. '{0,100}',
  6105. {
  6106. 'description' =>
  6107. 'Volume Level 0 100 { In hexadecimal representation}',
  6108. 'name' => 'None'
  6109. },
  6110. '{0,80}',
  6111. {
  6112. 'description' =>
  6113. 'Volume Level 0 80 { In hexadecimal representation}',
  6114. 'name' => 'None'
  6115. },
  6116. 'UP',
  6117. {
  6118. 'description' => 'sets Volume Level Up',
  6119. 'name' => 'level-up'
  6120. },
  6121. 'DOWN',
  6122. {
  6123. 'description' => 'sets Volume Level Down',
  6124. 'name' => 'level-down'
  6125. },
  6126. 'QSTN',
  6127. {
  6128. 'description' => 'gets the Volume Level',
  6129. 'name' => 'query'
  6130. }
  6131. }
  6132. },
  6133. 'ZTN',
  6134. {
  6135. 'description' => 'Zone2 Tone Command',
  6136. 'name' => 'tone',
  6137. 'values' => {
  6138. 'B{xx}',
  6139. {
  6140. 'description' =>
  6141. 'sets Zone2 Bass {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  6142. 'name' => 'bass-xx-is-a-00-a-10-0-10-2-step'
  6143. },
  6144. 'T{xx}',
  6145. {
  6146. 'description' =>
  6147. 'sets Zone2 Treble {xx is "-A"..."00"..."+A"[-10...0...+10 2 step]',
  6148. 'name' => 'treble-xx-is-a-00-a-10-0-10-2-step'
  6149. },
  6150. 'BUP',
  6151. {
  6152. 'description' => 'sets Bass Up {2 Step}',
  6153. 'name' => 'bass-up'
  6154. },
  6155. 'BDOWN',
  6156. {
  6157. 'description' => 'sets Bass Down {2 Step}',
  6158. 'name' => 'bass-down'
  6159. },
  6160. 'TUP',
  6161. {
  6162. 'description' => 'sets Treble Up {2 Step}',
  6163. 'name' => 'treble-up'
  6164. },
  6165. 'TDOWN',
  6166. {
  6167. 'description' => 'sets Treble Down {2 Step}',
  6168. 'name' => 'treble-down'
  6169. },
  6170. 'QSTN',
  6171. {
  6172. 'description' => 'gets Zone2 Tone {"BxxTxx"}',
  6173. 'name' => 'query'
  6174. }
  6175. }
  6176. },
  6177. 'ZBL',
  6178. {
  6179. 'description' => 'Zone2 Balance Command',
  6180. 'name' => 'balance',
  6181. 'values' => {
  6182. '{xx}',
  6183. {
  6184. 'description' =>
  6185. 'sets Zone2 Balance {xx is "-A"..."00"..."+A"[L+10...0...R+10 2 step]',
  6186. 'name' => 'xx-is-a-00-a-l-10-0-r-10-2-step'
  6187. },
  6188. 'UP',
  6189. {
  6190. 'description' => 'sets Balance Up {to R 2 Step}',
  6191. 'name' => 'up'
  6192. },
  6193. 'DOWN',
  6194. {
  6195. 'description' => 'sets Balance Down {to L 2 Step}',
  6196. 'name' => 'down'
  6197. },
  6198. 'QSTN',
  6199. {
  6200. 'description' => 'gets Zone2 Balance',
  6201. 'name' => 'query'
  6202. }
  6203. }
  6204. },
  6205. 'SLZ',
  6206. {
  6207. 'description' => 'ZONE2 Selector Command',
  6208. 'name' => 'input',
  6209. 'values' => {
  6210. '00',
  6211. {
  6212. 'description' => 'sets VIDEO1, VCR/DVR',
  6213. 'name' => [ 'video1', 'vcr', 'dvr' ]
  6214. },
  6215. '01',
  6216. {
  6217. 'description' => 'sets VIDEO2, CBL/SAT',
  6218. 'name' => [ 'video2', 'cbl', 'sat' ]
  6219. },
  6220. '02',
  6221. {
  6222. 'description' => 'sets VIDEO3, GAME/TV, GAME',
  6223. 'name' => [ 'video3', 'game' ]
  6224. },
  6225. '03',
  6226. {
  6227. 'description' => 'sets VIDEO4, AUX1{AUX}',
  6228. 'name' => [ 'video4', 'aux1' ]
  6229. },
  6230. '04',
  6231. {
  6232. 'description' => 'sets VIDEO5, AUX2',
  6233. 'name' => [ 'video5', 'aux2' ]
  6234. },
  6235. '05',
  6236. {
  6237. 'description' => 'sets VIDEO6, PC',
  6238. 'name' => [ 'video6', 'pc' ]
  6239. },
  6240. '06',
  6241. {
  6242. 'description' => 'sets VIDEO7',
  6243. 'name' => 'video7'
  6244. },
  6245. '07',
  6246. {
  6247. 'description' => 'sets Hidden1',
  6248. 'name' => 'hidden1'
  6249. },
  6250. '08',
  6251. {
  6252. 'description' => 'sets Hidden2',
  6253. 'name' => 'hidden2'
  6254. },
  6255. '09',
  6256. {
  6257. 'description' => 'sets Hidden3',
  6258. 'name' => 'hidden3'
  6259. },
  6260. '10',
  6261. {
  6262. 'description' => 'sets DVD, BD/DVD',
  6263. 'name' => [ 'dvd', 'bd', 'dvd' ]
  6264. },
  6265. '20',
  6266. {
  6267. 'description' => 'sets TAPE{1}',
  6268. 'name' => 'tape'
  6269. },
  6270. '21',
  6271. {
  6272. 'description' => 'sets TAPE2',
  6273. 'name' => 'tape2'
  6274. },
  6275. '22',
  6276. {
  6277. 'description' => 'sets PHONO',
  6278. 'name' => 'phono'
  6279. },
  6280. '23',
  6281. {
  6282. 'description' => 'sets CD, TV/CD',
  6283. 'name' => [ 'tv-cd', 'tv', 'cd' ]
  6284. },
  6285. '24',
  6286. { 'description' => 'sets FM', 'name' => 'fm' },
  6287. '25',
  6288. { 'description' => 'sets AM', 'name' => 'am' },
  6289. '26',
  6290. {
  6291. 'description' => 'sets TUNER',
  6292. 'name' => 'tuner'
  6293. },
  6294. '27',
  6295. {
  6296. 'description' => 'sets MUSIC SERVER, P4S, DLNA',
  6297. 'name' => [ 'music-server', 'p4s', 'dlna' ]
  6298. },
  6299. '28',
  6300. {
  6301. 'description' => 'sets INTERNET RADIO, iRadio Favorite',
  6302. 'name' => [ 'internet-radio', 'iradio-favorite' ]
  6303. },
  6304. '29',
  6305. {
  6306. 'description' => 'sets USB/USB{Front}',
  6307. 'name' => ['usb']
  6308. },
  6309. '2A',
  6310. {
  6311. 'description' => 'sets USB{Rear}',
  6312. 'name' => 'usb-rear'
  6313. },
  6314. '2B',
  6315. {
  6316. 'description' => 'sets NETWORK, NET',
  6317. 'name' => [ 'network', 'net' ]
  6318. },
  6319. '2C',
  6320. {
  6321. 'description' => 'sets USB{toggle}',
  6322. 'name' => 'usb-toggle'
  6323. },
  6324. '40',
  6325. {
  6326. 'description' => 'sets Universal PORT',
  6327. 'name' => 'universal-port'
  6328. },
  6329. '30',
  6330. {
  6331. 'description' => 'sets MULTI CH',
  6332. 'name' => 'multi-ch'
  6333. },
  6334. '31',
  6335. { 'description' => 'sets XM', 'name' => 'xm' },
  6336. '32',
  6337. {
  6338. 'description' => 'sets SIRIUS',
  6339. 'name' => 'sirius'
  6340. },
  6341. '7F',
  6342. { 'description' => 'sets OFF', 'name' => 'off' },
  6343. '80',
  6344. {
  6345. 'description' => 'sets SOURCE',
  6346. 'name' => 'source'
  6347. },
  6348. 'UP',
  6349. {
  6350. 'description' => 'sets Selector Position Wrap-Around Up',
  6351. 'name' => 'up'
  6352. },
  6353. 'DOWN',
  6354. {
  6355. 'description' => 'sets Selector Position Wrap-Around Down',
  6356. 'name' => 'down'
  6357. },
  6358. 'QSTN',
  6359. {
  6360. 'description' => 'gets The Selector Position',
  6361. 'name' => 'query'
  6362. }
  6363. }
  6364. },
  6365. 'TUZ',
  6366. {
  6367. 'description' => 'Tuning Command',
  6368. 'name' => 'tunerFrequency',
  6369. 'values' => {
  6370. 'nnnnn',
  6371. {
  6372. 'description' =>
  6373. 'sets Directly Tuning Frequency {FM nnn.nn MHz / AM nnnnn kHz / SR nnnnn ch}',
  6374. 'name' => 'None'
  6375. },
  6376. 'DIRECT',
  6377. {
  6378. 'description' => 'starts/restarts Direct Tuning Mode',
  6379. 'name' => 'direct'
  6380. },
  6381. '0',
  6382. {
  6383. 'description' => 'sets 0 in Direct Tuning Mode',
  6384. 'name' => '0-in-direct-mode'
  6385. },
  6386. '1',
  6387. {
  6388. 'description' => 'sets 1 in Direct Tuning Mode',
  6389. 'name' => '1-in-direct-mode'
  6390. },
  6391. '2',
  6392. {
  6393. 'description' => 'sets 2 in Direct Tuning Mode',
  6394. 'name' => '2-in-direct-mode'
  6395. },
  6396. '3',
  6397. {
  6398. 'description' => 'sets 3 in Direct Tuning Mode',
  6399. 'name' => '3-in-direct-mode'
  6400. },
  6401. '4',
  6402. {
  6403. 'description' => 'sets 4 in Direct Tuning Mode',
  6404. 'name' => '4-in-direct-mode'
  6405. },
  6406. '5',
  6407. {
  6408. 'description' => 'sets 5 in Direct Tuning Mode',
  6409. 'name' => '5-in-direct-mode'
  6410. },
  6411. '6',
  6412. {
  6413. 'description' => 'sets 6 in Direct Tuning Mode',
  6414. 'name' => '6-in-direct-mode'
  6415. },
  6416. '7',
  6417. {
  6418. 'description' => 'sets 7 in Direct Tuning Mode',
  6419. 'name' => '7-in-direct-mode'
  6420. },
  6421. '8',
  6422. {
  6423. 'description' => 'sets 8 in Direct Tuning Mode',
  6424. 'name' => '8-in-direct-mode'
  6425. },
  6426. '9',
  6427. {
  6428. 'description' => 'sets 9 in Direct Tuning Mode',
  6429. 'name' => '9-in-direct-mode'
  6430. },
  6431. 'UP',
  6432. {
  6433. 'description' => 'sets Tuning Frequency Wrap-Around Up',
  6434. 'name' => 'up'
  6435. },
  6436. 'DOWN',
  6437. {
  6438. 'description' => 'sets Tuning Frequency Wrap-Around Down',
  6439. 'name' => 'down'
  6440. },
  6441. 'QSTN',
  6442. {
  6443. 'description' => 'gets The Tuning Frequency',
  6444. 'name' => 'query'
  6445. }
  6446. }
  6447. },
  6448. 'PRZ',
  6449. {
  6450. 'description' => 'Preset Command',
  6451. 'name' => 'preset',
  6452. 'values' => {
  6453. '{1,40}',
  6454. {
  6455. 'description' =>
  6456. 'sets Preset No. 1 - 40 { In hexadecimal representation}',
  6457. 'name' => 'no-1-40'
  6458. },
  6459. '{1,30}',
  6460. {
  6461. 'description' =>
  6462. 'sets Preset No. 1 - 30 { In hexadecimal representation}',
  6463. 'name' => 'no-1-30'
  6464. },
  6465. 'UP',
  6466. {
  6467. 'description' => 'sets Preset No. Wrap-Around Up',
  6468. 'name' => 'up'
  6469. },
  6470. 'DOWN',
  6471. {
  6472. 'description' => 'sets Preset No. Wrap-Around Down',
  6473. 'name' => 'down'
  6474. },
  6475. 'QSTN',
  6476. {
  6477. 'description' => 'gets The Preset No.',
  6478. 'name' => 'query'
  6479. }
  6480. }
  6481. },
  6482. 'NTC',
  6483. {
  6484. 'description' =>
  6485. 'Net-Tune/Network Operation Command{Net-Tune Model Only}',
  6486. 'name' => 'net-usb',
  6487. 'values' => {
  6488. 'PLAYz',
  6489. {
  6490. 'description' => 'PLAY KEY',
  6491. 'name' => 'playz'
  6492. },
  6493. 'STOPz',
  6494. { 'description' => 'STOP KEY', 'name' => 'stopz' },
  6495. 'PAUSEz',
  6496. {
  6497. 'description' => 'PAUSE KEY',
  6498. 'name' => 'pausez'
  6499. },
  6500. 'TRUPz',
  6501. {
  6502. 'description' => 'TRACK UP KEY',
  6503. 'name' => 'trupz'
  6504. },
  6505. 'TRDNz',
  6506. {
  6507. 'description' => 'TRACK DOWN KEY',
  6508. 'name' => 'trdnz'
  6509. }
  6510. }
  6511. },
  6512. 'NTZ',
  6513. {
  6514. 'description' =>
  6515. 'Net-Tune/Network Operation Command{Network Model Only}',
  6516. 'name' => 'net-usb',
  6517. 'values' => {
  6518. 'PLAY',
  6519. {
  6520. 'description' => 'PLAY KEY',
  6521. 'name' => 'play'
  6522. },
  6523. 'STOP',
  6524. { 'description' => 'STOP KEY', 'name' => 'stop' },
  6525. 'PAUSE',
  6526. { 'description' => 'PAUSE KEY', 'name' => 'pause' },
  6527. 'TRUP',
  6528. {
  6529. 'description' => 'TRACK UP KEY',
  6530. 'name' => 'trup'
  6531. },
  6532. 'TRDN',
  6533. {
  6534. 'description' => 'TRACK DOWN KEY',
  6535. 'name' => 'trdn'
  6536. },
  6537. 'CHUP',
  6538. {
  6539. 'description' => 'CH UP{for iRadio}',
  6540. 'name' => 'chup'
  6541. },
  6542. 'CHDN',
  6543. {
  6544. 'description' => 'CH DOWN{for iRadio}',
  6545. 'name' => 'chdn'
  6546. },
  6547. 'FF',
  6548. {
  6549. 'description' => 'FF KEY {CONTINUOUS*} {for iPod 1wire}',
  6550. 'name' => 'ff'
  6551. },
  6552. 'REW',
  6553. {
  6554. 'description' => 'REW KEY {CONTINUOUS*} {for iPod 1wire}',
  6555. 'name' => 'rew'
  6556. },
  6557. 'REPEAT',
  6558. {
  6559. 'description' => 'REPEAT KEY{for iPod 1wire}',
  6560. 'name' => 'repeat'
  6561. },
  6562. 'RANDOM',
  6563. {
  6564. 'description' => 'RANDOM KEY{for iPod 1wire}',
  6565. 'name' => 'random'
  6566. },
  6567. 'DISPLAY',
  6568. {
  6569. 'description' => 'DISPLAY KEY{for iPod 1wire}',
  6570. 'name' => 'display'
  6571. },
  6572. 'RIGHT',
  6573. {
  6574. 'description' => 'RIGHT KEY{for iPod 1wire}',
  6575. 'name' => 'right'
  6576. },
  6577. 'LEFT',
  6578. {
  6579. 'description' => 'LEFT KEY{for iPod 1wire}',
  6580. 'name' => 'left'
  6581. },
  6582. 'UP',
  6583. {
  6584. 'description' => 'UP KEY{for iPod 1wire}',
  6585. 'name' => 'up'
  6586. },
  6587. 'DOWN',
  6588. {
  6589. 'description' => 'DOWN KEY{for iPod 1wire}',
  6590. 'name' => 'down'
  6591. },
  6592. 'SELECT',
  6593. {
  6594. 'description' => 'SELECT KEY{for iPod 1wire}',
  6595. 'name' => 'select'
  6596. },
  6597. 'RETURN',
  6598. {
  6599. 'description' => 'RETURN KEY{for iPod 1wire}',
  6600. 'name' => 'return'
  6601. }
  6602. }
  6603. },
  6604. 'NPZ',
  6605. {
  6606. 'description' =>
  6607. 'Internet Radio Preset Command {Network Model Only}',
  6608. 'name' => 'internet-radio-preset',
  6609. 'values' => {
  6610. '{1,40}',
  6611. {
  6612. 'description' =>
  6613. 'sets Preset No. 1 - 40 { In hexadecimal representation}',
  6614. 'name' => 'no-1-40'
  6615. }
  6616. }
  6617. },
  6618. 'LMZ',
  6619. {
  6620. 'description' => 'Listening Mode Command',
  6621. 'name' => 'listening-mode',
  6622. 'values' => {
  6623. '00',
  6624. {
  6625. 'description' => 'sets STEREO',
  6626. 'name' => 'stereo'
  6627. },
  6628. '01',
  6629. {
  6630. 'description' => 'sets DIRECT',
  6631. 'name' => 'direct'
  6632. },
  6633. '0F',
  6634. { 'description' => 'sets MONO', 'name' => 'mono' },
  6635. '12',
  6636. {
  6637. 'description' => 'sets MULTIPLEX',
  6638. 'name' => 'multiplex'
  6639. },
  6640. '87',
  6641. {
  6642. 'description' => 'sets DVS{Pl2}',
  6643. 'name' => 'dvs'
  6644. },
  6645. '88',
  6646. {
  6647. 'description' => 'sets DVS{NEO6}',
  6648. 'name' => 'dvs'
  6649. }
  6650. }
  6651. },
  6652. 'LTZ',
  6653. {
  6654. 'description' => 'Late Night Command',
  6655. 'name' => 'late-night',
  6656. 'values' => {
  6657. '00',
  6658. {
  6659. 'description' => 'sets Late Night Off',
  6660. 'name' => 'off'
  6661. },
  6662. '01',
  6663. {
  6664. 'description' => 'sets Late Night Low',
  6665. 'name' => 'low'
  6666. },
  6667. '02',
  6668. {
  6669. 'description' => 'sets Late Night High',
  6670. 'name' => 'high'
  6671. },
  6672. 'UP',
  6673. {
  6674. 'description' => 'sets Late Night State Wrap-Around Up',
  6675. 'name' => 'up'
  6676. },
  6677. 'QSTN',
  6678. {
  6679. 'description' => 'gets The Late Night Level',
  6680. 'name' => 'query'
  6681. }
  6682. }
  6683. },
  6684. 'RAZ',
  6685. {
  6686. 'description' => 'Re-EQ/Academy Filter Command',
  6687. 'name' => 're-eq-academy-filter',
  6688. 'values' => {
  6689. '00',
  6690. {
  6691. 'description' => 'sets Both Off',
  6692. 'name' => 'both-off'
  6693. },
  6694. '01',
  6695. {
  6696. 'description' => 'sets Re-EQ On',
  6697. 'name' => 'on'
  6698. },
  6699. '02',
  6700. {
  6701. 'description' => 'sets Academy On',
  6702. 'name' => 'on'
  6703. },
  6704. 'UP',
  6705. {
  6706. 'description' => 'sets Re-EQ/Academy State Wrap-Around Up',
  6707. 'name' => 'up'
  6708. },
  6709. 'QSTN',
  6710. {
  6711. 'description' => 'gets The Re-EQ/Academy State',
  6712. 'name' => 'query'
  6713. }
  6714. }
  6715. }
  6716. },
  6717. '3' => {
  6718. 'PW3',
  6719. {
  6720. 'description' => 'Zone3 Power Command',
  6721. 'name' => 'power',
  6722. 'values' => {
  6723. '00',
  6724. {
  6725. 'description' => 'sets Zone3 Standby',
  6726. 'name' => 'off'
  6727. },
  6728. '01',
  6729. {
  6730. 'description' => 'sets Zone3 On',
  6731. 'name' => 'on'
  6732. },
  6733. 'QSTN',
  6734. {
  6735. 'description' => 'gets the Zone3 Power Status',
  6736. 'name' => 'query'
  6737. }
  6738. }
  6739. },
  6740. 'MT3',
  6741. {
  6742. 'description' => 'Zone3 Muting Command',
  6743. 'name' => 'mute',
  6744. 'values' => {
  6745. '00',
  6746. {
  6747. 'description' => 'sets Zone3 Muting Off',
  6748. 'name' => 'off'
  6749. },
  6750. '01',
  6751. {
  6752. 'description' => 'sets Zone3 Muting On',
  6753. 'name' => 'on'
  6754. },
  6755. 'TG',
  6756. {
  6757. 'description' => 'sets Zone3 Muting Wrap-Around',
  6758. 'name' => 'toggle'
  6759. },
  6760. 'QSTN',
  6761. {
  6762. 'description' => 'gets the Zone3 Muting Status',
  6763. 'name' => 'query'
  6764. }
  6765. }
  6766. },
  6767. 'VL3',
  6768. {
  6769. 'description' => 'Zone3 Volume Command',
  6770. 'name' => 'volume',
  6771. 'values' => {
  6772. '{0,100}',
  6773. {
  6774. 'description' =>
  6775. 'Volume Level 0 100 { In hexadecimal representation}',
  6776. 'name' => 'None'
  6777. },
  6778. '{0,80}',
  6779. {
  6780. 'description' =>
  6781. 'Volume Level 0 80 { In hexadecimal representation}',
  6782. 'name' => 'None'
  6783. },
  6784. 'UP',
  6785. {
  6786. 'description' => 'sets Volume Level Up',
  6787. 'name' => 'level-up'
  6788. },
  6789. 'DOWN',
  6790. {
  6791. 'description' => 'sets Volume Level Down',
  6792. 'name' => 'level-down'
  6793. },
  6794. 'QSTN',
  6795. {
  6796. 'description' => 'gets the Volume Level',
  6797. 'name' => 'query'
  6798. }
  6799. }
  6800. },
  6801. 'TN3',
  6802. {
  6803. 'description' => 'Zone3 Tone Command',
  6804. 'name' => 'tone',
  6805. 'values' => {
  6806. 'B{xx}',
  6807. {
  6808. 'description' =>
  6809. 'Zone3 Bass {xx is "-A"..."00"..."+A"[-10...0...+10 2 step}',
  6810. 'name' => 'b-xx'
  6811. },
  6812. 'T{xx}',
  6813. {
  6814. 'description' =>
  6815. 'Zone3 Treble {xx is "-A"..."00"..."+A"[-10...0...+10 2 step}',
  6816. 'name' => 't-xx'
  6817. },
  6818. 'BUP',
  6819. {
  6820. 'description' => 'sets Bass Up {2 Step}',
  6821. 'name' => 'bass-up'
  6822. },
  6823. 'BDOWN',
  6824. {
  6825. 'description' => 'sets Bass Down {2 Step}',
  6826. 'name' => 'bass-down'
  6827. },
  6828. 'TUP',
  6829. {
  6830. 'description' => 'sets Treble Up {2 Step}',
  6831. 'name' => 'treble-up'
  6832. },
  6833. 'TDOWN',
  6834. {
  6835. 'description' => 'sets Treble Down {2 Step}',
  6836. 'name' => 'treble-down'
  6837. },
  6838. 'QSTN',
  6839. {
  6840. 'description' => 'gets Zone3 Tone {"BxxTxx"}',
  6841. 'name' => 'query'
  6842. }
  6843. }
  6844. },
  6845. 'BL3',
  6846. {
  6847. 'description' => 'Zone3 Balance Command',
  6848. 'name' => 'balance',
  6849. 'values' => {
  6850. '{xx}',
  6851. {
  6852. 'description' =>
  6853. 'Zone3 Balance {xx is "-A"..."00"..."+A"[L+10...0...R+10 2 step}',
  6854. 'name' => 'xx'
  6855. },
  6856. 'UP',
  6857. {
  6858. 'description' => 'sets Balance Up {to R 2 Step}',
  6859. 'name' => 'up'
  6860. },
  6861. 'DOWN',
  6862. {
  6863. 'description' => 'sets Balance Down {to L 2 Step}',
  6864. 'name' => 'down'
  6865. },
  6866. 'QSTN',
  6867. {
  6868. 'description' => 'gets Zone3 Balance',
  6869. 'name' => 'query'
  6870. }
  6871. }
  6872. },
  6873. 'SL3',
  6874. {
  6875. 'description' => 'ZONE3 Selector Command',
  6876. 'name' => 'input',
  6877. 'values' => {
  6878. '00',
  6879. {
  6880. 'description' => 'sets VIDEO1, VCR/DVR',
  6881. 'name' => [ 'video1', 'vcr', 'dvr' ]
  6882. },
  6883. '01',
  6884. {
  6885. 'description' => 'sets VIDEO2, CBL/SAT',
  6886. 'name' => [ 'video2', 'cbl', 'sat' ]
  6887. },
  6888. '02',
  6889. {
  6890. 'description' => 'sets VIDEO3, GAME/TV, GAME',
  6891. 'name' => [ 'video3', 'game' ]
  6892. },
  6893. '03',
  6894. {
  6895. 'description' => 'sets VIDEO4, AUX1{AUX}',
  6896. 'name' => [ 'video4', 'aux1' ]
  6897. },
  6898. '04',
  6899. {
  6900. 'description' => 'sets VIDEO5, AUX2',
  6901. 'name' => [ 'video5', 'aux2' ]
  6902. },
  6903. '05',
  6904. {
  6905. 'description' => 'sets VIDEO6, PC',
  6906. 'name' => [ 'video6', 'pc' ]
  6907. },
  6908. '06',
  6909. {
  6910. 'description' => 'sets VIDEO7',
  6911. 'name' => 'video7'
  6912. },
  6913. '07',
  6914. {
  6915. 'description' => 'sets Hidden1',
  6916. 'name' => 'hidden1'
  6917. },
  6918. '08',
  6919. {
  6920. 'description' => 'sets Hidden2',
  6921. 'name' => 'hidden2'
  6922. },
  6923. '09',
  6924. {
  6925. 'description' => 'sets Hidden3',
  6926. 'name' => 'hidden3'
  6927. },
  6928. '10',
  6929. { 'description' => 'sets DVD', 'name' => 'dvd' },
  6930. '20',
  6931. {
  6932. 'description' => 'sets TAPE{1}',
  6933. 'name' => 'tape'
  6934. },
  6935. '21',
  6936. {
  6937. 'description' => 'sets TAPE2',
  6938. 'name' => 'tape2'
  6939. },
  6940. '22',
  6941. {
  6942. 'description' => 'sets PHONO',
  6943. 'name' => 'phono'
  6944. },
  6945. '23',
  6946. {
  6947. 'description' => 'sets CD, TV/CD',
  6948. 'name' => [ 'tv-cd', 'tv', 'cd' ]
  6949. },
  6950. '24',
  6951. { 'description' => 'sets FM', 'name' => 'fm' },
  6952. '25',
  6953. { 'description' => 'sets AM', 'name' => 'am' },
  6954. '26',
  6955. {
  6956. 'description' => 'sets TUNER',
  6957. 'name' => 'tuner'
  6958. },
  6959. '27',
  6960. {
  6961. 'description' => 'sets MUSIC SERVER, P4S, DLNA',
  6962. 'name' => [ 'music-server', 'p4s', 'dlna' ]
  6963. },
  6964. '28',
  6965. {
  6966. 'description' => 'sets INTERNET RADIO, iRadio Favorite',
  6967. 'name' => [ 'internet-radio', 'iradio-favorite' ]
  6968. },
  6969. '29',
  6970. {
  6971. 'description' => 'sets USB/USB{Front}',
  6972. 'name' => ['usb']
  6973. },
  6974. '2A',
  6975. {
  6976. 'description' => 'sets USB{Rear}',
  6977. 'name' => 'usb-rear'
  6978. },
  6979. '2B',
  6980. {
  6981. 'description' => 'sets NETWORK, NET',
  6982. 'name' => [ 'network', 'net' ]
  6983. },
  6984. '2C',
  6985. {
  6986. 'description' => 'sets USB{toggle}',
  6987. 'name' => 'usb-toggle'
  6988. },
  6989. '40',
  6990. {
  6991. 'description' => 'sets Universal PORT',
  6992. 'name' => 'universal-port'
  6993. },
  6994. '30',
  6995. {
  6996. 'description' => 'sets MULTI CH',
  6997. 'name' => 'multi-ch'
  6998. },
  6999. '31',
  7000. { 'description' => 'sets XM', 'name' => 'xm' },
  7001. '32',
  7002. {
  7003. 'description' => 'sets SIRIUS',
  7004. 'name' => 'sirius'
  7005. },
  7006. '80',
  7007. {
  7008. 'description' => 'sets SOURCE',
  7009. 'name' => 'source'
  7010. },
  7011. 'UP',
  7012. {
  7013. 'description' => 'sets Selector Position Wrap-Around Up',
  7014. 'name' => 'up'
  7015. },
  7016. 'DOWN',
  7017. {
  7018. 'description' => 'sets Selector Position Wrap-Around Down',
  7019. 'name' => 'down'
  7020. },
  7021. 'QSTN',
  7022. {
  7023. 'description' => 'gets The Selector Position',
  7024. 'name' => 'query'
  7025. }
  7026. }
  7027. },
  7028. 'TU3',
  7029. {
  7030. 'description' => 'Tuning Command',
  7031. 'name' => 'tunerFrequency',
  7032. 'values' => {
  7033. 'nnnnn',
  7034. {
  7035. 'description' =>
  7036. 'sets Directly Tuning Frequency {FM nnn.nn MHz / AM nnnnn kHz / SR nnnnn ch}',
  7037. 'name' => 'None'
  7038. },
  7039. 'DIRECT',
  7040. {
  7041. 'description' => 'starts/restarts Direct Tuning Mode',
  7042. 'name' => 'direct'
  7043. },
  7044. '0',
  7045. {
  7046. 'description' => 'sets 0 in Direct Tuning Mode',
  7047. 'name' => '0-in-direct-mode'
  7048. },
  7049. '1',
  7050. {
  7051. 'description' => 'sets 1 in Direct Tuning Mode',
  7052. 'name' => '1-in-direct-mode'
  7053. },
  7054. '2',
  7055. {
  7056. 'description' => 'sets 2 in Direct Tuning Mode',
  7057. 'name' => '2-in-direct-mode'
  7058. },
  7059. '3',
  7060. {
  7061. 'description' => 'sets 3 in Direct Tuning Mode',
  7062. 'name' => '3-in-direct-mode'
  7063. },
  7064. '4',
  7065. {
  7066. 'description' => 'sets 4 in Direct Tuning Mode',
  7067. 'name' => '4-in-direct-mode'
  7068. },
  7069. '5',
  7070. {
  7071. 'description' => 'sets 5 in Direct Tuning Mode',
  7072. 'name' => '5-in-direct-mode'
  7073. },
  7074. '6',
  7075. {
  7076. 'description' => 'sets 6 in Direct Tuning Mode',
  7077. 'name' => '6-in-direct-mode'
  7078. },
  7079. '7',
  7080. {
  7081. 'description' => 'sets 7 in Direct Tuning Mode',
  7082. 'name' => '7-in-direct-mode'
  7083. },
  7084. '8',
  7085. {
  7086. 'description' => 'sets 8 in Direct Tuning Mode',
  7087. 'name' => '8-in-direct-mode'
  7088. },
  7089. '9',
  7090. {
  7091. 'description' => 'sets 9 in Direct Tuning Mode',
  7092. 'name' => '9-in-direct-mode'
  7093. },
  7094. 'UP',
  7095. {
  7096. 'description' => 'sets Tuning Frequency Wrap-Around Up',
  7097. 'name' => 'up'
  7098. },
  7099. 'DOWN',
  7100. {
  7101. 'description' => 'sets Tuning Frequency Wrap-Around Down',
  7102. 'name' => 'down'
  7103. },
  7104. 'QSTN',
  7105. {
  7106. 'description' => 'gets The Tuning Frequency',
  7107. 'name' => 'query'
  7108. }
  7109. }
  7110. },
  7111. 'PR3',
  7112. {
  7113. 'description' => 'Preset Command',
  7114. 'name' => 'preset',
  7115. 'values' => {
  7116. '{1,40}',
  7117. {
  7118. 'description' =>
  7119. 'sets Preset No. 1 - 40 { In hexadecimal representation}',
  7120. 'name' => 'no-1-40'
  7121. },
  7122. '{1,30}',
  7123. {
  7124. 'description' =>
  7125. 'sets Preset No. 1 - 30 { In hexadecimal representation}',
  7126. 'name' => 'no-1-30'
  7127. },
  7128. 'UP',
  7129. {
  7130. 'description' => 'sets Preset No. Wrap-Around Up',
  7131. 'name' => 'up'
  7132. },
  7133. 'DOWN',
  7134. {
  7135. 'description' => 'sets Preset No. Wrap-Around Down',
  7136. 'name' => 'down'
  7137. },
  7138. 'QSTN',
  7139. {
  7140. 'description' => 'gets The Preset No.',
  7141. 'name' => 'query'
  7142. }
  7143. }
  7144. },
  7145. 'NTC',
  7146. {
  7147. 'description' =>
  7148. 'Net-Tune/Network Operation Command{Net-Tune Model Only}',
  7149. 'name' => 'net-usb',
  7150. 'values' => {
  7151. 'PLAYz',
  7152. {
  7153. 'description' => 'PLAY KEY',
  7154. 'name' => 'playz'
  7155. },
  7156. 'STOPz',
  7157. { 'description' => 'STOP KEY', 'name' => 'stopz' },
  7158. 'PAUSEz',
  7159. {
  7160. 'description' => 'PAUSE KEY',
  7161. 'name' => 'pausez'
  7162. },
  7163. 'TRUPz',
  7164. {
  7165. 'description' => 'TRACK UP KEY',
  7166. 'name' => 'trupz'
  7167. },
  7168. 'TRDNz',
  7169. {
  7170. 'description' => 'TRACK DOWN KEY',
  7171. 'name' => 'trdnz'
  7172. }
  7173. }
  7174. },
  7175. 'NT3',
  7176. {
  7177. 'description' =>
  7178. 'Net-Tune/Network Operation Command{Network Model Only}',
  7179. 'name' => 'net-usb',
  7180. 'values' => {
  7181. 'PLAY',
  7182. {
  7183. 'description' => 'PLAY KEY',
  7184. 'name' => 'play'
  7185. },
  7186. 'STOP',
  7187. { 'description' => 'STOP KEY', 'name' => 'stop' },
  7188. 'PAUSE',
  7189. { 'description' => 'PAUSE KEY', 'name' => 'pause' },
  7190. 'TRUP',
  7191. {
  7192. 'description' => 'TRACK UP KEY',
  7193. 'name' => 'trup'
  7194. },
  7195. 'TRDN',
  7196. {
  7197. 'description' => 'TRACK DOWN KEY',
  7198. 'name' => 'trdn'
  7199. },
  7200. 'CHUP',
  7201. {
  7202. 'description' => 'CH UP{for iRadio}',
  7203. 'name' => 'chup'
  7204. },
  7205. 'CHDN',
  7206. {
  7207. 'description' => 'CH DOWNP{for iRadio}',
  7208. 'name' => 'chdn'
  7209. },
  7210. 'FF',
  7211. {
  7212. 'description' => 'FF KEY {CONTINUOUS*} {for iPod 1wire}',
  7213. 'name' => 'ff'
  7214. },
  7215. 'REW',
  7216. {
  7217. 'description' => 'REW KEY {CONTINUOUS*} {for iPod 1wire}',
  7218. 'name' => 'rew'
  7219. },
  7220. 'REPEAT',
  7221. {
  7222. 'description' => 'REPEAT KEY{for iPod 1wire}',
  7223. 'name' => 'repeat'
  7224. },
  7225. 'RANDOM',
  7226. {
  7227. 'description' => 'RANDOM KEY{for iPod 1wire}',
  7228. 'name' => 'random'
  7229. },
  7230. 'DISPLAY',
  7231. {
  7232. 'description' => 'DISPLAY KEY{for iPod 1wire}',
  7233. 'name' => 'display'
  7234. },
  7235. 'RIGHT',
  7236. {
  7237. 'description' => 'RIGHT KEY{for iPod 1wire}',
  7238. 'name' => 'right'
  7239. },
  7240. 'LEFT',
  7241. {
  7242. 'description' => 'LEFT KEY{for iPod 1wire}',
  7243. 'name' => 'left'
  7244. },
  7245. 'UP',
  7246. {
  7247. 'description' => 'UP KEY{for iPod 1wire}',
  7248. 'name' => 'up'
  7249. },
  7250. 'DOWN',
  7251. {
  7252. 'description' => 'DOWN KEY{for iPod 1wire}',
  7253. 'name' => 'down'
  7254. },
  7255. 'SELECT',
  7256. {
  7257. 'description' => 'SELECT KEY{for iPod 1wire}',
  7258. 'name' => 'select'
  7259. },
  7260. 'RETURN',
  7261. {
  7262. 'description' => 'RETURN KEY{for iPod 1wire}',
  7263. 'name' => 'return'
  7264. }
  7265. }
  7266. },
  7267. 'NP3',
  7268. {
  7269. 'description' =>
  7270. 'Internet Radio Preset Command {Network Model Only}',
  7271. 'name' => 'internet-radio-preset',
  7272. 'values' => {
  7273. '{1,40}',
  7274. {
  7275. 'description' =>
  7276. 'sets Preset No. 1 - 40 { In hexadecimal representation}',
  7277. 'name' => 'no-1-40'
  7278. }
  7279. }
  7280. }
  7281. },
  7282. '4' => {
  7283. 'PW4',
  7284. {
  7285. 'description' => 'Zone4 Power Command',
  7286. 'name' => 'power',
  7287. 'values' => {
  7288. '00',
  7289. {
  7290. 'description' => 'sets Zone4 Standby',
  7291. 'name' => 'off'
  7292. },
  7293. '01',
  7294. {
  7295. 'description' => 'sets Zone4 On',
  7296. 'name' => 'on'
  7297. },
  7298. 'QSTN',
  7299. {
  7300. 'description' => 'gets the Zone4 Power Status',
  7301. 'name' => 'query'
  7302. }
  7303. }
  7304. },
  7305. 'MT4',
  7306. {
  7307. 'description' => 'Zone4 Muting Command',
  7308. 'name' => 'mute',
  7309. 'values' => {
  7310. '00',
  7311. {
  7312. 'description' => 'sets Zone4 Muting Off',
  7313. 'name' => 'off'
  7314. },
  7315. '01',
  7316. {
  7317. 'description' => 'sets Zone4 Muting On',
  7318. 'name' => 'on'
  7319. },
  7320. 'TG',
  7321. {
  7322. 'description' => 'sets Zone4 Muting Wrap-Around',
  7323. 'name' => 'toggle'
  7324. },
  7325. 'QSTN',
  7326. {
  7327. 'description' => 'gets the Zone4 Muting Status',
  7328. 'name' => 'query'
  7329. }
  7330. }
  7331. },
  7332. 'VL4',
  7333. {
  7334. 'description' => 'Zone4 Volume Command',
  7335. 'name' => 'volume',
  7336. 'values' => {
  7337. '{0,100}',
  7338. {
  7339. 'description' =>
  7340. 'Volume Level 0 100 { In hexadecimal representation}',
  7341. 'name' => 'None'
  7342. },
  7343. '{0,80}',
  7344. {
  7345. 'description' =>
  7346. 'Volume Level 0 80 { In hexadecimal representation}',
  7347. 'name' => 'None'
  7348. },
  7349. 'UP',
  7350. {
  7351. 'description' => 'sets Volume Level Up',
  7352. 'name' => 'level-up'
  7353. },
  7354. 'DOWN',
  7355. {
  7356. 'description' => 'sets Volume Level Down',
  7357. 'name' => 'level-down'
  7358. },
  7359. 'QSTN',
  7360. {
  7361. 'description' => 'gets the Volume Level',
  7362. 'name' => 'query'
  7363. }
  7364. }
  7365. },
  7366. 'SL4',
  7367. {
  7368. 'description' => 'ZONE4 Selector Command',
  7369. 'name' => 'input',
  7370. 'values' => {
  7371. '00',
  7372. {
  7373. 'description' => 'sets VIDEO1, VCR/DVR',
  7374. 'name' => [ 'video1', 'vcr', 'dvr' ]
  7375. },
  7376. '01',
  7377. {
  7378. 'description' => 'sets VIDEO2, CBL/SAT',
  7379. 'name' => [ 'video2', 'cbl', 'sat' ]
  7380. },
  7381. '02',
  7382. {
  7383. 'description' => 'sets VIDEO3, GAME/TV, GAME',
  7384. 'name' => [ 'video3', 'game' ]
  7385. },
  7386. '03',
  7387. {
  7388. 'description' => 'sets VIDEO4, AUX1{AUX}',
  7389. 'name' => [ 'video4', 'aux1' ]
  7390. },
  7391. '04',
  7392. {
  7393. 'description' => 'sets VIDEO5, AUX2',
  7394. 'name' => [ 'video5', 'aux2' ]
  7395. },
  7396. '05',
  7397. {
  7398. 'description' => 'sets VIDEO6',
  7399. 'name' => 'video6'
  7400. },
  7401. '06',
  7402. {
  7403. 'description' => 'sets VIDEO7',
  7404. 'name' => 'video7'
  7405. },
  7406. '07',
  7407. {
  7408. 'description' => 'sets Hidden1',
  7409. 'name' => 'hidden1'
  7410. },
  7411. '08',
  7412. {
  7413. 'description' => 'sets Hidden2',
  7414. 'name' => 'hidden2'
  7415. },
  7416. '09',
  7417. {
  7418. 'description' => 'sets Hidden3',
  7419. 'name' => 'hidden3'
  7420. },
  7421. '10',
  7422. { 'description' => 'sets DVD', 'name' => 'dvd' },
  7423. '20',
  7424. {
  7425. 'description' => 'sets TAPE{1}, TV/TAPE',
  7426. 'name' => [ 'tape-1', 'tv', 'tape' ]
  7427. },
  7428. '21',
  7429. {
  7430. 'description' => 'sets TAPE2',
  7431. 'name' => 'tape2'
  7432. },
  7433. '22',
  7434. {
  7435. 'description' => 'sets PHONO',
  7436. 'name' => 'phono'
  7437. },
  7438. '23',
  7439. {
  7440. 'description' => 'sets CD, TV/CD',
  7441. 'name' => [ 'tv-cd', 'tv', 'cd' ]
  7442. },
  7443. '24',
  7444. { 'description' => 'sets FM', 'name' => 'fm' },
  7445. '25',
  7446. { 'description' => 'sets AM', 'name' => 'am' },
  7447. '26',
  7448. {
  7449. 'description' => 'sets TUNER',
  7450. 'name' => 'tuner'
  7451. },
  7452. '27',
  7453. {
  7454. 'description' => 'sets MUSIC SERVER, P4S, DLNA',
  7455. 'name' => [ 'music-server', 'p4s', 'dlna' ]
  7456. },
  7457. '28',
  7458. {
  7459. 'description' => 'sets INTERNET RADIO, iRadio Favorite',
  7460. 'name' => [ 'internet-radio', 'iradio-favorite' ]
  7461. },
  7462. '29',
  7463. {
  7464. 'description' => 'sets USB/USB{Front}',
  7465. 'name' => ['usb']
  7466. },
  7467. '2A',
  7468. {
  7469. 'description' => 'sets USB{Rear}',
  7470. 'name' => 'usb-rear'
  7471. },
  7472. '2B',
  7473. {
  7474. 'description' => 'sets NETWORK, NET',
  7475. 'name' => [ 'network', 'net' ]
  7476. },
  7477. '2C',
  7478. {
  7479. 'description' => 'sets USB{toggle}',
  7480. 'name' => 'usb-toggle'
  7481. },
  7482. '40',
  7483. {
  7484. 'description' => 'sets Universal PORT',
  7485. 'name' => 'universal-port'
  7486. },
  7487. '30',
  7488. {
  7489. 'description' => 'sets MULTI CH',
  7490. 'name' => 'multi-ch'
  7491. },
  7492. '31',
  7493. { 'description' => 'sets XM', 'name' => 'xm' },
  7494. '32',
  7495. {
  7496. 'description' => 'sets SIRIUS',
  7497. 'name' => 'sirius'
  7498. },
  7499. '80',
  7500. {
  7501. 'description' => 'sets SOURCE',
  7502. 'name' => 'source'
  7503. },
  7504. 'UP',
  7505. {
  7506. 'description' => 'sets Selector Position Wrap-Around Up',
  7507. 'name' => 'up'
  7508. },
  7509. 'DOWN',
  7510. {
  7511. 'description' => 'sets Selector Position Wrap-Around Down',
  7512. 'name' => 'down'
  7513. },
  7514. 'QSTN',
  7515. {
  7516. 'description' => 'gets The Selector Position',
  7517. 'name' => 'query'
  7518. }
  7519. }
  7520. },
  7521. 'TU4',
  7522. {
  7523. 'description' => 'Tuning Command',
  7524. 'name' => 'tunerFrequency',
  7525. 'values' => {
  7526. 'nnnnn',
  7527. {
  7528. 'description' =>
  7529. 'sets Directly Tuning Frequency {FM nnn.nn MHz / AM nnnnn kHz}',
  7530. 'name' => 'None'
  7531. },
  7532. 'DIRECT',
  7533. {
  7534. 'description' => 'starts/restarts Direct Tuning Mode',
  7535. 'name' => 'direct'
  7536. },
  7537. '0',
  7538. {
  7539. 'description' => 'sets 0 in Direct Tuning Mode',
  7540. 'name' => '0-in-direct-mode'
  7541. },
  7542. '1',
  7543. {
  7544. 'description' => 'sets 1 in Direct Tuning Mode',
  7545. 'name' => '1-in-direct-mode'
  7546. },
  7547. '2',
  7548. {
  7549. 'description' => 'sets 2 in Direct Tuning Mode',
  7550. 'name' => '2-in-direct-mode'
  7551. },
  7552. '3',
  7553. {
  7554. 'description' => 'sets 3 in Direct Tuning Mode',
  7555. 'name' => '3-in-direct-mode'
  7556. },
  7557. '4',
  7558. {
  7559. 'description' => 'sets 4 in Direct Tuning Mode',
  7560. 'name' => '4-in-direct-mode'
  7561. },
  7562. '5',
  7563. {
  7564. 'description' => 'sets 5 in Direct Tuning Mode',
  7565. 'name' => '5-in-direct-mode'
  7566. },
  7567. '6',
  7568. {
  7569. 'description' => 'sets 6 in Direct Tuning Mode',
  7570. 'name' => '6-in-direct-mode'
  7571. },
  7572. '7',
  7573. {
  7574. 'description' => 'sets 7 in Direct Tuning Mode',
  7575. 'name' => '7-in-direct-mode'
  7576. },
  7577. '8',
  7578. {
  7579. 'description' => 'sets 8 in Direct Tuning Mode',
  7580. 'name' => '8-in-direct-mode'
  7581. },
  7582. '9',
  7583. {
  7584. 'description' => 'sets 9 in Direct Tuning Mode',
  7585. 'name' => '9-in-direct-mode'
  7586. },
  7587. 'UP',
  7588. {
  7589. 'description' => 'sets Tuning Frequency Wrap-Around Up',
  7590. 'name' => 'up'
  7591. },
  7592. 'DOWN',
  7593. {
  7594. 'description' => 'sets Tuning Frequency Wrap-Around Down',
  7595. 'name' => 'down'
  7596. },
  7597. 'QSTN',
  7598. {
  7599. 'description' => 'gets The Tuning Frequency',
  7600. 'name' => 'query'
  7601. }
  7602. }
  7603. },
  7604. 'PR4',
  7605. {
  7606. 'description' => 'Preset Command',
  7607. 'name' => 'preset',
  7608. 'values' => {
  7609. '{1,40}',
  7610. {
  7611. 'description' =>
  7612. 'sets Preset No. 1 - 40 { In hexadecimal representation}',
  7613. 'name' => 'no-1-40'
  7614. },
  7615. '{1,30}',
  7616. {
  7617. 'description' =>
  7618. 'sets Preset No. 1 - 30 { In hexadecimal representation}',
  7619. 'name' => 'no-1-30'
  7620. },
  7621. 'UP',
  7622. {
  7623. 'description' => 'sets Preset No. Wrap-Around Up',
  7624. 'name' => 'up'
  7625. },
  7626. 'DOWN',
  7627. {
  7628. 'description' => 'sets Preset No. Wrap-Around Down',
  7629. 'name' => 'down'
  7630. },
  7631. 'QSTN',
  7632. {
  7633. 'description' => 'gets The Preset No.',
  7634. 'name' => 'query'
  7635. }
  7636. }
  7637. },
  7638. 'NTC',
  7639. {
  7640. 'description' =>
  7641. 'Net-Tune/Network Operation Command{Net-Tune Model Only}',
  7642. 'name' => 'net-usb',
  7643. 'values' => {
  7644. 'PLAYz',
  7645. {
  7646. 'description' => 'PLAY KEY',
  7647. 'name' => 'playz'
  7648. },
  7649. 'STOPz',
  7650. { 'description' => 'STOP KEY', 'name' => 'stopz' },
  7651. 'PAUSEz',
  7652. {
  7653. 'description' => 'PAUSE KEY',
  7654. 'name' => 'pausez'
  7655. },
  7656. 'TRUPz',
  7657. {
  7658. 'description' => 'TRACK UP KEY',
  7659. 'name' => 'trupz'
  7660. },
  7661. 'TRDNz',
  7662. {
  7663. 'description' => 'TRACK DOWN KEY',
  7664. 'name' => 'trdnz'
  7665. }
  7666. }
  7667. },
  7668. 'NT4',
  7669. {
  7670. 'description' =>
  7671. 'Net-Tune/Network Operation Command{Network Model Only}',
  7672. 'name' => 'net-usb',
  7673. 'values' => {
  7674. 'PLAY',
  7675. {
  7676. 'description' => 'PLAY KEY',
  7677. 'name' => 'play'
  7678. },
  7679. 'STOP',
  7680. { 'description' => 'STOP KEY', 'name' => 'stop' },
  7681. 'PAUSE',
  7682. { 'description' => 'PAUSE KEY', 'name' => 'pause' },
  7683. 'TRUP',
  7684. {
  7685. 'description' => 'TRACK UP KEY',
  7686. 'name' => 'trup'
  7687. },
  7688. 'TRDN',
  7689. {
  7690. 'description' => 'TRACK DOWN KEY',
  7691. 'name' => 'trdn'
  7692. },
  7693. 'FF',
  7694. {
  7695. 'description' => 'FF KEY {CONTINUOUS*} {for iPod 1wire}',
  7696. 'name' => 'ff'
  7697. },
  7698. 'REW',
  7699. {
  7700. 'description' => 'REW KEY {CONTINUOUS*} {for iPod 1wire}',
  7701. 'name' => 'rew'
  7702. },
  7703. 'REPEAT',
  7704. {
  7705. 'description' => 'REPEAT KEY{for iPod 1wire}',
  7706. 'name' => 'repeat'
  7707. },
  7708. 'RANDOM',
  7709. {
  7710. 'description' => 'RANDOM KEY{for iPod 1wire}',
  7711. 'name' => 'random'
  7712. },
  7713. 'DISPLAY',
  7714. {
  7715. 'description' => 'DISPLAY KEY{for iPod 1wire}',
  7716. 'name' => 'display'
  7717. },
  7718. 'RIGHT',
  7719. {
  7720. 'description' => 'RIGHT KEY{for iPod 1wire}',
  7721. 'name' => 'right'
  7722. },
  7723. 'LEFT',
  7724. {
  7725. 'description' => 'LEFT KEY{for iPod 1wire}',
  7726. 'name' => 'left'
  7727. },
  7728. 'UP',
  7729. {
  7730. 'description' => 'UP KEY{for iPod 1wire}',
  7731. 'name' => 'up'
  7732. },
  7733. 'DOWN',
  7734. {
  7735. 'description' => 'DOWN KEY{for iPod 1wire}',
  7736. 'name' => 'down'
  7737. },
  7738. 'SELECT',
  7739. {
  7740. 'description' => 'SELECT KEY{for iPod 1wire}',
  7741. 'name' => 'select'
  7742. },
  7743. 'RETURN',
  7744. {
  7745. 'description' => 'RETURN KEY{for iPod 1wire}',
  7746. 'name' => 'return'
  7747. }
  7748. }
  7749. },
  7750. 'NP4',
  7751. {
  7752. 'description' =>
  7753. 'Internet Radio Preset Command {Network Model Only}',
  7754. 'name' => 'internet-radio-preset',
  7755. 'values' => {
  7756. '{1,40}',
  7757. {
  7758. 'description' =>
  7759. 'sets Preset No. 1 - 40 { In hexadecimal representation}',
  7760. 'name' => 'no-1-40'
  7761. }
  7762. }
  7763. }
  7764. },
  7765. 'dock' => {
  7766. 'CDS',
  7767. {
  7768. 'description' => 'Command for Docking Station via RI',
  7769. 'name' => 'command-for-docking-station-via-ri',
  7770. 'values' => {
  7771. 'PWRON',
  7772. {
  7773. 'description' => 'sets Dock On',
  7774. 'name' => 'on'
  7775. },
  7776. 'PWROFF',
  7777. {
  7778. 'description' => 'sets Dock Standby',
  7779. 'name' => 'off'
  7780. },
  7781. 'PLY/RES',
  7782. {
  7783. 'description' => 'PLAY/RESUME Key',
  7784. 'name' => 'ply-res'
  7785. },
  7786. 'STOP',
  7787. { 'description' => 'STOP Key', 'name' => 'stop' },
  7788. 'SKIP.F',
  7789. {
  7790. 'description' => 'TRACK UP Key',
  7791. 'name' => 'skip-f'
  7792. },
  7793. 'SKIP.R',
  7794. {
  7795. 'description' => 'TRACK DOWN Key',
  7796. 'name' => 'skip-r'
  7797. },
  7798. 'PAUSE',
  7799. { 'description' => 'PAUSE Key', 'name' => 'pause' },
  7800. 'PLY/PAU',
  7801. {
  7802. 'description' => 'PLAY/PAUSE Key',
  7803. 'name' => 'ply-pau'
  7804. },
  7805. 'FF',
  7806. { 'description' => 'FF Key', 'name' => 'ff' },
  7807. 'REW',
  7808. { 'description' => 'FR Key', 'name' => 'rew' },
  7809. 'ALBUM+',
  7810. {
  7811. 'description' => 'ALBUM UP Key',
  7812. 'name' => 'album'
  7813. },
  7814. 'ALBUM-',
  7815. {
  7816. 'description' => 'ALBUM DONW Key',
  7817. 'name' => 'album'
  7818. },
  7819. 'PLIST+',
  7820. {
  7821. 'description' => 'PLAYLIST UP Key',
  7822. 'name' => 'plist'
  7823. },
  7824. 'PLIST-',
  7825. {
  7826. 'description' => 'PLAYLIST DOWN Key',
  7827. 'name' => 'plist'
  7828. },
  7829. 'CHAPT+',
  7830. {
  7831. 'description' => 'CHAPTER UP Key',
  7832. 'name' => 'chapt'
  7833. },
  7834. 'CHAPT-',
  7835. {
  7836. 'description' => 'CHAPTER DOWN Key',
  7837. 'name' => 'chapt'
  7838. },
  7839. 'RANDOM',
  7840. {
  7841. 'description' => 'SHUFFLE Key',
  7842. 'name' => 'random'
  7843. },
  7844. 'REPEAT',
  7845. {
  7846. 'description' => 'REPEAT Key',
  7847. 'name' => 'repeat'
  7848. },
  7849. 'MUTE',
  7850. { 'description' => 'MUTE Key', 'name' => 'mute' },
  7851. 'BLIGHT',
  7852. {
  7853. 'description' => 'BACKLIGHT Key',
  7854. 'name' => 'blight'
  7855. },
  7856. 'MENU',
  7857. { 'description' => 'MENU Key', 'name' => 'menu' },
  7858. 'ENTER',
  7859. {
  7860. 'description' => 'SELECT Key',
  7861. 'name' => 'enter'
  7862. },
  7863. 'UP',
  7864. { 'description' => 'CUSOR UP Key', 'name' => 'up' },
  7865. 'DOWN',
  7866. {
  7867. 'description' => 'CURSOR DOWN Key',
  7868. 'name' => 'down'
  7869. }
  7870. }
  7871. }
  7872. }
  7873. };
  7874. #####################################
  7875. sub ONKYO_GetRemotecontrolCommand($;$) {
  7876. my ( $zone, $command ) = @_;
  7877. if ( !defined($command) && defined( $ONKYO_cmds_hr->{$zone} ) ) {
  7878. return $ONKYO_cmds_hr->{$zone};
  7879. }
  7880. elsif ( defined( $ONKYO_cmds_hr->{$zone}{$command} ) ) {
  7881. return $ONKYO_cmds_hr->{$zone}{$command};
  7882. }
  7883. else {
  7884. return undef;
  7885. }
  7886. }
  7887. #####################################
  7888. sub ONKYO_GetRemotecontrolValue($$;$) {
  7889. my ( $zone, $command, $value ) = @_;
  7890. if ( !defined($value)
  7891. && defined( $ONKYO_values_hr->{$zone}{$command} ) )
  7892. {
  7893. return $ONKYO_values_hr->{$zone}{$command};
  7894. }
  7895. elsif ( defined( $ONKYO_values_hr->{$zone}{$command}{$value} ) ) {
  7896. return $ONKYO_values_hr->{$zone}{$command}{$value};
  7897. }
  7898. else {
  7899. return undef;
  7900. }
  7901. }
  7902. #####################################
  7903. sub ONKYO_GetRemotecontrolCommandDetails($;$) {
  7904. my ( $zone, $command ) = @_;
  7905. if ( !defined($command) && defined( $ONKYO_cmddb->{$zone} ) ) {
  7906. return $ONKYO_cmddb->{$zone};
  7907. }
  7908. elsif ( defined( $ONKYO_cmddb->{$zone}{$command} ) ) {
  7909. return $ONKYO_cmddb->{$zone}{$command};
  7910. }
  7911. else {
  7912. return undef;
  7913. }
  7914. }
  7915. 1;