12345678910111213141516171819202122232425 |
- # hardware address for your display, a common value is "0x70"
- # use i2cdetect to find yours if it doesn't match
- HW_ADDRESS=0x70
- # do you want the middle colon to blink, 0 = off, 1 = on
- BLINK_COLON=0
- # value used for "high" brightness, valid values are 0-15
- BRIGHTNESS_HIGH=15
- # value used for "low" brightness, valid values are 0-15
- BRIGHTNESS_LOW=2
- # time of the day to change the brightness from high to low
- SET_BRIGHTNESS_LOW=23:00
- # time of the day to change the brightness from low to high
- SET_BRIGHTNESS_HIGH=06:00
- # maximum syslog level to log, stdd uses debug, info and error
- SYSLOG_LEVEL=info
- # syslog facility to use for logging
- SYSLOG_FACILITY=user
|