aboutsummaryrefslogtreecommitdiff
path: root/components/fasani__adafruit_gfx/API.md
blob: 2e40294e375956a19d887aa1106d2affd9efeb19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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)
```