Skip to content

Commit fb4ba47

Browse files
committed
Possible fix for #1 uninitalized pixels on screen
1 parent d61f570 commit fb4ba47

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/LcdScreen.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ void LcdScreen::begin() {
4848
#if !defined(ARDUINO_AVR_ROBOT_CONTROL)
4949
setRotation(1);
5050
#endif
51+
background(backgroundColor); // Without this backgroundColor is random pixels?
52+
stroke(strokeColor); // Without this strokeColor is white?
53+
//fill(fillColor); // Maybe not needed?
5154
}
5255

5356
// Arduino Robot library compatibility.

0 commit comments

Comments
 (0)