mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
* Fix GPIO/SPI code * Use buffers in SPI read/write * Add pin qstrs OMV2 * remove old led files * Update LCD user examples
7 lines
113 B
Python
7 lines
113 B
Python
import lcd, sensor
|
|
lcd.init()
|
|
lcd.clear(0xFF)
|
|
while (True):
|
|
image = sensor.snapshot()
|
|
lcd.write_image(image)
|