Fixed comment to be accurate

This commit is contained in:
Melissa LeBlanc-Williams 2019-03-16 14:00:35 -07:00
parent d7d3fbe7c7
commit 79c9358ed7

View file

@ -49,7 +49,7 @@ __version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_ILI9341.git" __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_ILI9341.git"
_INIT_SEQUENCE = ( _INIT_SEQUENCE = (
b"\x01\x80\x80"# Software reset then delay 0x78 (120ms) b"\x01\x80\x80" # Software reset then delay 0x80 (128ms)
b"\xEF\x03\x03\x80\x02" b"\xEF\x03\x03\x80\x02"
b"\xCF\x03\x00\xC1\x30" b"\xCF\x03\x00\xC1\x30"
b"\xED\x04\x64\x03\x12\x81" b"\xED\x04\x64\x03\x12\x81"
@ -70,8 +70,8 @@ _INIT_SEQUENCE = (
b"\x26\x01\x01" # Gamma curve selected b"\x26\x01\x01" # Gamma curve selected
b"\xe0\x0f\x0F\x31\x2B\x0C\x0E\x08\x4E\xF1\x37\x07\x10\x03\x0E\x09\x00" # Set Gamma b"\xe0\x0f\x0F\x31\x2B\x0C\x0E\x08\x4E\xF1\x37\x07\x10\x03\x0E\x09\x00" # Set Gamma
b"\xe1\x0f\x00\x0E\x14\x03\x11\x07\x31\xC1\x48\x08\x0F\x0C\x31\x36\x0F" # Set Gamma b"\xe1\x0f\x00\x0E\x14\x03\x11\x07\x31\xC1\x48\x08\x0F\x0C\x31\x36\x0F" # Set Gamma
b"\x11\x80\x78"# Exit Sleep then delay 0x78 (120ms) b"\x11\x80\x78" # Exit Sleep then delay 0x78 (120ms)
b"\x29\x80\x78"# Display on then delay 0x78 (120ms) b"\x29\x80\x78" # Display on then delay 0x78 (120ms)
) )
# pylint: disable=too-few-public-methods # pylint: disable=too-few-public-methods