Skip to content

Commit 364be83

Browse files
committed
comments typo fix INVERT->INVERSE (Fixes adafruit#224)
1 parent 2ca4979 commit 364be83

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Adafruit_SSD1306.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ bool Adafruit_SSD1306::begin(uint8_t vcs, uint8_t addr, bool reset,
627627
@param y
628628
Row of display -- 0 at top to (screen height -1) at bottom.
629629
@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.
631631
@return None (void).
632632
@note Changes buffer contents only, no immediate effect on display.
633633
Follow up with a call to display(), or with other graphics
@@ -685,7 +685,7 @@ void Adafruit_SSD1306::clearDisplay(void) {
685685
@param w
686686
Width of line, in pixels.
687687
@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.
689689
@return None (void).
690690
@note Changes buffer contents only, no immediate effect on display.
691691
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,
734734
Width of line, in pixels.
735735
@param color
736736
Line color, one of: SSD1306_BLACK, SSD1306_WHITE or
737-
SSD1306_INVERT.
737+
SSD1306_INVERSE.
738738
@return None (void).
739739
@note Changes buffer contents only, no immediate effect on display.
740740
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,
785785
@param h
786786
Height of line, in pixels.
787787
@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.
789789
@return None (void).
790790
@note Changes buffer contents only, no immediate effect on display.
791791
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,
833833
@param __h height of the line in pixels
834834
@param color
835835
Line color, one of: SSD1306_BLACK, SSD1306_WHITE or
836-
SSD1306_INVERT.
836+
SSD1306_INVERSE.
837837
@return None (void).
838838
@note Changes buffer contents only, no immediate effect on display.
839839
Follow up with a call to display(), or with other graphics

0 commit comments

Comments
 (0)