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
Hey, your clear function inits the zero[128] array but never defines it, which lead to artifacts on my display. Here is the primitive fix you could probably solve way better:
uint8_t zero[128];
for (uint8_t i = 0; i < 128; i++) {
zero[i] = 0;
}
The text was updated successfully, but these errors were encountered:
Hey, your clear function inits the zero[128] array but never defines it, which lead to artifacts on my display. Here is the primitive fix you could probably solve way better:
uint8_t zero[128];
for (uint8_t i = 0; i < 128; i++) {
zero[i] = 0;
}
The text was updated successfully, but these errors were encountered: