CONFIG = {
'update_interval': 2.0, 'temperature_unit': 'celsius',
'brightness': 0.8,
'text_color': 0xFFFFFF, 'error_color': 0xFF0000, 'accent_color': 0x00FF00,
'temp_offset': 0.0, 'light_calibration': 1.0,
'debug_mode': True,
'serial_output': True,
}
DISPLAY_LAYOUT = {
'title_y': 10,
'temp_y': 40,
'light_y': 70,
'status_y': 100,
'margin_x': 10,
}
SENSOR_PINS = {
'temperature': 'A0',
'light': 'A1',
'led': 'D13', }