Skip to content

Commit 21fc048

Browse files
committed
Make module names lowercase.
1 parent beddafa commit 21fc048

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Pins can be referenced as follows:
5151
Setting up the SPI pins is very simple, too:
5252

5353
```python
54-
from pyduinoincludes.SPI import *
54+
from pyduinoincludes.spi import *
5555

5656
def my_spi_function():
5757
spi_init() # Sets up the bit-banged SPI
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from IO import *
1+
from io import *
22

33
CS = D10
44
MOSI = D11

0 commit comments

Comments
 (0)