You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is one change that breaks compatibility with older versions. You'll have to change data type for all your binary resources such as images and fonts from
3
+
There are changes that breaks compatibility with older versions.
4
4
5
-
```c
6
-
constchar MySymbol[] PROGMEM = {
7
-
```
5
+
1. You'll have to change data type for all your binary resources such as images and fonts from
6
+
7
+
```c
8
+
constchar MySymbol[] PROGMEM = {
9
+
```
10
+
11
+
to
12
+
13
+
```c
14
+
const uint8_t MySymbol[] PROGMEM = {
15
+
```
8
16
9
-
to
10
-
11
-
```c
12
-
const uint8_t MySymbol[] PROGMEM = {
13
-
```
17
+
1. Arguments of `setContrast` from `char` to `uint8_t`
0 commit comments