diff options
| -rw-r--r-- | wasp/boards/sphinx/watch.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/wasp/boards/sphinx/watch.py b/wasp/boards/sphinx/watch.py index 343f47b..6ffcd5f 100644 --- a/wasp/boards/sphinx/watch.py +++ b/wasp/boards/sphinx/watch.py @@ -46,8 +46,13 @@ def sleep_ms(ms): time.sleep(ms / 1000) time.sleep_ms = sleep_ms +class Accel(): + def reset(self): + pass + class Pin(): def value(v=None): pass +accel = Accel() button = Pin() |
