@@ -630,7 +630,8 @@ bool Adafruit_SSD1306::begin(uint8_t vcs, uint8_t addr, bool reset,
630
630
@param y
631
631
Row of display -- 0 at top to (screen height -1) at bottom.
632
632
@param color
633
- Pixel color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERT.
633
+ Pixel color, one of: SSD1306_BLACK, SSD1306_WHITE or
634
+ SSD1306_INVERSE.
634
635
@return None (void).
635
636
@note Changes buffer contents only, no immediate effect on display.
636
637
Follow up with a call to display(), or with other graphics
@@ -688,7 +689,7 @@ void Adafruit_SSD1306::clearDisplay(void) {
688
689
@param w
689
690
Width of line, in pixels.
690
691
@param color
691
- Line color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERT .
692
+ Line color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERSE .
692
693
@return None (void).
693
694
@note Changes buffer contents only, no immediate effect on display.
694
695
Follow up with a call to display(), or with other graphics
@@ -737,7 +738,7 @@ void Adafruit_SSD1306::drawFastHLine(int16_t x, int16_t y, int16_t w,
737
738
Width of line, in pixels.
738
739
@param color
739
740
Line color, one of: SSD1306_BLACK, SSD1306_WHITE or
740
- SSD1306_INVERT .
741
+ SSD1306_INVERSE .
741
742
@return None (void).
742
743
@note Changes buffer contents only, no immediate effect on display.
743
744
Follow up with a call to display(), or with other graphics
@@ -788,7 +789,7 @@ void Adafruit_SSD1306::drawFastHLineInternal(int16_t x, int16_t y, int16_t w,
788
789
@param h
789
790
Height of line, in pixels.
790
791
@param color
791
- Line color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERT .
792
+ Line color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERSE .
792
793
@return None (void).
793
794
@note Changes buffer contents only, no immediate effect on display.
794
795
Follow up with a call to display(), or with other graphics
@@ -836,7 +837,7 @@ void Adafruit_SSD1306::drawFastVLine(int16_t x, int16_t y, int16_t h,
836
837
@param __h height of the line in pixels
837
838
@param color
838
839
Line color, one of: SSD1306_BLACK, SSD1306_WHITE or
839
- SSD1306_INVERT .
840
+ SSD1306_INVERSE .
840
841
@return None (void).
841
842
@note Changes buffer contents only, no immediate effect on display.
842
843
Follow up with a call to display(), or with other graphics
0 commit comments