diff options
| author | gamerdonkey | 2024-09-14 16:00:46 -0500 |
|---|---|---|
| committer | gamerdonkey | 2024-09-14 16:00:46 -0500 |
| commit | 8909bb8e8c915d105daaf7d1fd03546af5ab4d94 (patch) | |
| tree | 41c989043795df4a21f1c6ecbf674a46b77a7b94 /components/fasani__adafruit_gfx/API.md | |
| parent | 35ff74c9be46e16030d1184a506451e1d3805c25 (diff) | |
| download | esp32-inova-led-controller-8909bb8e8c915d105daaf7d1fd03546af5ab4d94.tar.gz esp32-inova-led-controller-8909bb8e8c915d105daaf7d1fd03546af5ab4d94.tar.bz2 esp32-inova-led-controller-8909bb8e8c915d105daaf7d1fd03546af5ab4d94.zip | |
Changing to use an Adafruit_GFX library from components repo.
Diffstat (limited to 'components/fasani__adafruit_gfx/API.md')
| -rw-r--r-- | components/fasani__adafruit_gfx/API.md | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/components/fasani__adafruit_gfx/API.md b/components/fasani__adafruit_gfx/API.md new file mode 100644 index 0000000..2e40294 --- /dev/null +++ b/components/fasani__adafruit_gfx/API.md @@ -0,0 +1,81 @@ +* drawBitmap +``` +drawBitmap(x, y, bitmap, w, h, color) +``` + +* drawChar +Characters are 5x8 +``` +drawChar(x, y, c, color, bg, size) +``` + +* drawCircle +``` +drawCircle(x, y, r, color) +``` + +* drawLine +``` +drawLine(x1, y1, x2, y2, color) +``` + +* drawPixel +``` +drawPixel(x,y,color) +``` + +* drawRect +``` +drawRect(x, y, w, h, color) +``` + +* drawRoundRect +``` +drawRoundRect(x, y, w, h, r, color) +``` + +* fillCircle +``` +fillCircle(x, y, r, color) +``` + +* fillRect +``` +fillRect(x, y, w, h, color) +``` + +* fillRoundRect +``` +fillRoundRect(x, y, w, h, r, color) +``` + +* fillScreen +``` +fillScreen(color) +``` + +* setCursor +``` +setCursor(x, y) +``` + +* setRotation +``` +setRotation(rotation) +``` + +* setTextColor +``` +setTextColor(color) +setTextColor(color, backgroundColor) +``` + +* setTextSize +``` +setTextSize(size) +``` + +* setTextWrap +``` +setTextWrap(w) +```
\ No newline at end of file |
