Select Git revision
tb_test_grid_2048.py
inquiry_responds_library.py 1.72 KiB
"""
Dictionary of responds depending on the inquiry command
"""
respond = {'y05002FF': "On", 'y05003FF': "Off", "y05000FF": "auto/standard"}
wb_mode_respond = {"y05000FF": "auto", "y05001FF": "In Door", "y05002FF": "Out Door",
"y05003FF": "One Push WB", "y05004FF": "ATW", "y05005FF": "Manual"}
ae_mode_respond = {'y05000FF': "Full auto", 'y05003FF': "Manual", "y0500AFF": "Shutter Priority", "y0500BFF": "Iris priority", "y0500DFF": "Bright"}
wd_mode_respond = {"y05000FF": "Off", "y05002FF": "Low",
"y05003FF": "Mid", "y05004FF": "High"}
picture_mode_respond = {"y05000FF": "Off", "y05002FF": "Neg.Art", "y05004FF": "B&W"}
video_system_respond = {"y05000FF": "1920 x 1080 p / 59.94", "y05002FF": "1920 x 1080 p / 29.97",
"y05003FF": "1920 x 1080 i / 59.94", "y05004FF": "1280 x 720 p / 59.94",
"y05005FF": "1280 x 720 p / 29.97", "y05008FF": "1920 x 1080p / 50",
"y0500AFF": "1920 x 1080 p / 25", "y0500BFF": "1920 x 1080 i / 50",
"y0500CFF": "1280 x 720 p / 50", "y0500DFF": "1280 x 720 p / 25"}
color_system_respond = {"y05000FF": "HDMI YUV", "y05001FF": "HDMI GBR",
"y05002FF": "DVI GBR", "y05003FF": "DVI YUV"}
ir_condition = {"y05000FF": "ir remote commander stable reception enable",
"y05001FF": "ir remote commander reception unstable environment",
"y05002FF": "power ON by ir remote commander (cannot be judged)"}
inq_list = {"respond" : respond, "wb_mode_respond" : wb_mode_respond, "picture_mode_respond": picture_mode_respond, "video_system_respond" : video_system_respond, "color_system_respond" : color_system_respond, "ir_condition" : ir_condition}