Skip to content

Commit 26b893c

Browse files
authored
Merge pull request adafruit#225 from BillyDonahue/typo_inverse_224
comments typo fix INVERT->INVERSE (Fixes adafruit#224)
2 parents b8333af + 7d94528 commit 26b893c

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Adafruit_SSD1306.cpp

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,8 @@ bool Adafruit_SSD1306::begin(uint8_t vcs, uint8_t addr, bool reset,
630630
@param y
631631
Row of display -- 0 at top to (screen height -1) at bottom.
632632
@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.
634635
@return None (void).
635636
@note Changes buffer contents only, no immediate effect on display.
636637
Follow up with a call to display(), or with other graphics
@@ -688,7 +689,7 @@ void Adafruit_SSD1306::clearDisplay(void) {
688689
@param w
689690
Width of line, in pixels.
690691
@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.
692693
@return None (void).
693694
@note Changes buffer contents only, no immediate effect on display.
694695
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,
737738
Width of line, in pixels.
738739
@param color
739740
Line color, one of: SSD1306_BLACK, SSD1306_WHITE or
740-
SSD1306_INVERT.
741+
SSD1306_INVERSE.
741742
@return None (void).
742743
@note Changes buffer contents only, no immediate effect on display.
743744
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,
788789
@param h
789790
Height of line, in pixels.
790791
@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.
792793
@return None (void).
793794
@note Changes buffer contents only, no immediate effect on display.
794795
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,
836837
@param __h height of the line in pixels
837838
@param color
838839
Line color, one of: SSD1306_BLACK, SSD1306_WHITE or
839-
SSD1306_INVERT.
840+
SSD1306_INVERSE.
840841
@return None (void).
841842
@note Changes buffer contents only, no immediate effect on display.
842843
Follow up with a call to display(), or with other graphics

0 commit comments

Comments
 (0)