summaryrefslogtreecommitdiff
path: root/include/driver/ssd1306.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/driver/ssd1306.h')
-rw-r--r--include/driver/ssd1306.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/driver/ssd1306.h b/include/driver/ssd1306.h
index 4a2cf01..2afcb86 100644
--- a/include/driver/ssd1306.h
+++ b/include/driver/ssd1306.h
@@ -56,7 +56,7 @@ class SSD1306 {
SSD1306_SET_DISP_CLK_DIV, 0x80,
SSD1306_SET_PRECHARGE, 0xf1,
SSD1306_SET_VCOM_DESEL, 0x30,
- SSD1306_SET_CONTRAST, 0xff,
+ SSD1306_SET_CONTRAST, 0x7f,
SSD1306_SET_ENTIRE_ON,
SSD1306_SET_NORM_INV,
SSD1306_SET_CHARGE_PUMP, 0x14,
@@ -70,6 +70,8 @@ class SSD1306 {
SSD1306() {}
void init();
+ void setContrast(unsigned char contrast);
+ void setInvert(bool invert);
void showImage(unsigned char* data, uint16_t length);
};