@@ -627,7 +627,7 @@ bool Adafruit_SSD1306::begin(uint8_t vcs, uint8_t addr, bool reset,
627
627
@param y
628
628
Row of display -- 0 at top to (screen height -1) at bottom.
629
629
@param color
630
- Pixel color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERT .
630
+ Pixel color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERSE .
631
631
@return None (void).
632
632
@note Changes buffer contents only, no immediate effect on display.
633
633
Follow up with a call to display(), or with other graphics
@@ -685,7 +685,7 @@ void Adafruit_SSD1306::clearDisplay(void) {
685
685
@param w
686
686
Width of line, in pixels.
687
687
@param color
688
- Line color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERT .
688
+ Line color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERSE .
689
689
@return None (void).
690
690
@note Changes buffer contents only, no immediate effect on display.
691
691
Follow up with a call to display(), or with other graphics
@@ -734,7 +734,7 @@ void Adafruit_SSD1306::drawFastHLine(int16_t x, int16_t y, int16_t w,
734
734
Width of line, in pixels.
735
735
@param color
736
736
Line color, one of: SSD1306_BLACK, SSD1306_WHITE or
737
- SSD1306_INVERT .
737
+ SSD1306_INVERSE .
738
738
@return None (void).
739
739
@note Changes buffer contents only, no immediate effect on display.
740
740
Follow up with a call to display(), or with other graphics
@@ -785,7 +785,7 @@ void Adafruit_SSD1306::drawFastHLineInternal(int16_t x, int16_t y, int16_t w,
785
785
@param h
786
786
Height of line, in pixels.
787
787
@param color
788
- Line color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERT .
788
+ Line color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERSE .
789
789
@return None (void).
790
790
@note Changes buffer contents only, no immediate effect on display.
791
791
Follow up with a call to display(), or with other graphics
@@ -833,7 +833,7 @@ void Adafruit_SSD1306::drawFastVLine(int16_t x, int16_t y, int16_t h,
833
833
@param __h height of the line in pixels
834
834
@param color
835
835
Line color, one of: SSD1306_BLACK, SSD1306_WHITE or
836
- SSD1306_INVERT .
836
+ SSD1306_INVERSE .
837
837
@return None (void).
838
838
@note Changes buffer contents only, no immediate effect on display.
839
839
Follow up with a call to display(), or with other graphics
0 commit comments