From 1241703451c71ee4bd3e5b0e87bc3428a3c0e2a3 Mon Sep 17 00:00:00 2001 From: Johannes Marbach Date: Wed, 20 Nov 2019 21:16:28 +0100 Subject: [PATCH] Add missing time import in example When copy/pasted, the example otherwise doesn't run due to the usage of `time.sleep` in the code. --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index 41f8c56..537253a 100644 --- a/README.rst +++ b/README.rst @@ -62,6 +62,7 @@ Usage Example .. code-block:: python + import time import busio import digitalio from board import SCK, MOSI, MISO, D2, D3