Merge pull request #225 from BillyDonahue/typo_inverse_224

comments typo fix INVERT->INVERSE (Fixes #224)
This commit is contained in:
Limor "Ladyada" Fried 2021-11-07 12:23:14 -05:00 committed by GitHub
commit 26b893cd7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -630,7 +630,8 @@ bool Adafruit_SSD1306::begin(uint8_t vcs, uint8_t addr, bool reset,
@param y @param y
Row of display -- 0 at top to (screen height -1) at bottom. Row of display -- 0 at top to (screen height -1) at bottom.
@param color @param color
Pixel color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERT. Pixel color, one of: SSD1306_BLACK, SSD1306_WHITE or
SSD1306_INVERSE.
@return None (void). @return None (void).
@note Changes buffer contents only, no immediate effect on display. @note Changes buffer contents only, no immediate effect on display.
Follow up with a call to display(), or with other graphics Follow up with a call to display(), or with other graphics
@ -688,7 +689,7 @@ void Adafruit_SSD1306::clearDisplay(void) {
@param w @param w
Width of line, in pixels. Width of line, in pixels.
@param color @param color
Line color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERT. Line color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERSE.
@return None (void). @return None (void).
@note Changes buffer contents only, no immediate effect on display. @note Changes buffer contents only, no immediate effect on display.
Follow up with a call to display(), or with other graphics 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,
Width of line, in pixels. Width of line, in pixels.
@param color @param color
Line color, one of: SSD1306_BLACK, SSD1306_WHITE or Line color, one of: SSD1306_BLACK, SSD1306_WHITE or
SSD1306_INVERT. SSD1306_INVERSE.
@return None (void). @return None (void).
@note Changes buffer contents only, no immediate effect on display. @note Changes buffer contents only, no immediate effect on display.
Follow up with a call to display(), or with other graphics 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,
@param h @param h
Height of line, in pixels. Height of line, in pixels.
@param color @param color
Line color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERT. Line color, one of: SSD1306_BLACK, SSD1306_WHITE or SSD1306_INVERSE.
@return None (void). @return None (void).
@note Changes buffer contents only, no immediate effect on display. @note Changes buffer contents only, no immediate effect on display.
Follow up with a call to display(), or with other graphics 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,
@param __h height of the line in pixels @param __h height of the line in pixels
@param color @param color
Line color, one of: SSD1306_BLACK, SSD1306_WHITE or Line color, one of: SSD1306_BLACK, SSD1306_WHITE or
SSD1306_INVERT. SSD1306_INVERSE.
@return None (void). @return None (void).
@note Changes buffer contents only, no immediate effect on display. @note Changes buffer contents only, no immediate effect on display.
Follow up with a call to display(), or with other graphics Follow up with a call to display(), or with other graphics