Changed configuration items to snake_case (#1000)

This commit is contained in:
SenexCrenshaw 2021-02-14 00:22:12 -05:00 committed by GitHub
parent 41599332fe
commit 5c4a645a85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,11 +34,11 @@ There are numerous board types out there. Some initialize differently as well. T
cs_pin: D1
dc_pin: D2
rotation: 0
devicewidth: 128
deviceheight: 160
colstart: 0
rowstart: 0
eightbitcolor: true
device_width: 128
device_height: 160
col_start: 0
row_start: 0
eight_bit_color: true
update_interval: 5s
Configuration variables:
@ -48,11 +48,11 @@ Configuration variables:
- **reset_pin** (:ref:`Pin Schema <config-pin_schema>`): The RESET pin.
- **cs_pin** (:ref:`Pin Schema <config-pin_schema>`): The CS pin.
- **dc_pin** (:ref:`Pin Schema <config-pin_schema>`): The DC pin.
- **devicewidth** (**Required**, int): The device width. 128 is default
- **deviceheight** (**Required**, int): The device height. 160 is default
- **colstart** (**Required**, int): The device height. 160 is default
- **rowstart** (**Required**, int): The device height. 160 is default
- **eightbitcolor** (*Optional*, "True/False" ): 8bit mode. Default is False. This saves 50% of the buffer required for the display.
- **device_width** (**Required**, int): The device width. 128 is default
- **device_height** (**Required**, int): The device height. 160 is default
- **col_start** (**Required**, int): The device height. 160 is default
- **row_start** (**Required**, int): The device height. 160 is default
- **eight_bit_color** (*Optional*, "True/False" ): 8bit mode. Default is False. This saves 50% of the buffer required for the display.
Memory notes:
~~~~~~~~~~~~~