From f16d90de302c6042c29814fcf149acacc71d05b8 Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Thu, 4 Feb 2021 11:46:43 +0000 Subject: [PATCH] Fix import in pio_spi.py --- pio/pio_spi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pio/pio_spi.py b/pio/pio_spi.py index 3964061..30f02c3 100644 --- a/pio/pio_spi.py +++ b/pio/pio_spi.py @@ -1,4 +1,4 @@ -from rp2 import PIO, asm_pio +import rp2 from machine import Pin @rp2.asm_pio(out_shiftdir=0, autopull=True, pull_thresh=8, autopush=True, push_thresh=8, sideset_init=(rp2.PIO.OUT_LOW, rp2.PIO.OUT_HIGH), out_init=rp2.PIO.OUT_LOW)