diff --git a/usr/examples/lcd.py b/usr/examples/lcd.py new file mode 100644 index 000000000..8ebd7c4dd --- /dev/null +++ b/usr/examples/lcd.py @@ -0,0 +1,6 @@ +import sensor, imlib, lcd +lcd.init() +lcd.clear(0xFF) +while (True): + image = sensor.snapshot() + lcd.write_image(image)