diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-01-31 19:36:55 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-01-31 19:36:55 (GMT) |
| commit | 262d93c76cca638a832cf21cc44393df31bc7940 (patch) | |
| tree | 12f510ea19981330d452402c04be01d0023c8c16 /wasp/drivers | |
| parent | e36caf59975b9705aff4f15d6642043aec4f27c6 (diff) | |
wasp: simulator: First steps towards a simulator
Currently this just traces SPI activity from the ST7789 driver but its
a good baseline to start building up test functions from.
Diffstat (limited to 'wasp/drivers')
| -rw-r--r-- | wasp/drivers/st7789.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wasp/drivers/st7789.py b/wasp/drivers/st7789.py index cea14d7..9236790 100644 --- a/wasp/drivers/st7789.py +++ b/wasp/drivers/st7789.py @@ -1,5 +1,7 @@ # MicroPython ST7789 display driver, currently only has an SPI interface +import micropython + from micropython import const from time import sleep_ms |
