summaryrefslogtreecommitdiff
path: root/src/drivers/St7789.h
diff options
context:
space:
mode:
authorRiku Isokoski <riksu9000@gmail.com>2022-04-22 20:26:38 (GMT)
committerRiku Isokoski <riksu9000@gmail.com>2022-04-25 12:50:26 (GMT)
commitaa32159c005cf44fbda9fa42818c7deab7c41297 (patch)
tree62d1fe918d388b52ca020224fb8f6f2d4aa96dc3 /src/drivers/St7789.h
parent5e83a862dba2c850a10fea11e814d593b2381f76 (diff)
Tweak gamma on ST7789 and match UI colors
This change will increase the color accuracy of the PineTime and make UI development with the simulator easier.
Diffstat (limited to 'src/drivers/St7789.h')
-rw-r--r--src/drivers/St7789.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/St7789.h b/src/drivers/St7789.h
index 4fbccbe..1317abe 100644
--- a/src/drivers/St7789.h
+++ b/src/drivers/St7789.h
@@ -43,6 +43,7 @@ namespace Pinetime {
void NormalModeOn();
void WriteToRam();
void SetAddrWindow(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1);
+ void SetGamma();
void WriteCommand(uint8_t cmd);
void WriteSpi(const uint8_t* data, size_t size);
@@ -52,6 +53,7 @@ namespace Pinetime {
SleepOut = 0x11,
NormalModeOn = 0x13,
DisplayInversionOn = 0x21,
+ GammaSet = 0x26,
DisplayOff = 0x28,
DisplayOn = 0x29,
ColumnAddressSet = 0x2a,