@@ -4,7 +4,7 @@ SNAPpy Includes for the Pyduino Development Board
44Introduction
55------------
66
7- ` pyduino-includes ` is a SNAPpy library that is designed to make development for the Synapse Pyduino board easier. It
7+ ` pyduinoincludes ` is a SNAPpy library that is designed to make development for the Synapse Pyduino board easier. It
88allows references to the nifty Pyduino IO names (like D3, AD0, or SCL) instead of the underlying SNAPpy GPIO numbers.
99It also provides a bit-banged SPI implementation that can be used for shields that utilize the SPI pins.
1010
@@ -18,7 +18,7 @@ By default, this is located at `...\Documents\Portal\snappyImages` on Windows.
1818
1919### For use with SNAPbuild
2020
21- The easiest way to install ` pyduino-includes ` for use with SNAPbuild is using
21+ The easiest way to install ` pyduinoincludes ` for use with SNAPbuild is using
2222[ pip] ( https://pip.pypa.io/en/latest/installing.html ) :
2323
2424 pip install git+ssh://[email protected] :synapse-wireless/pyduino-includes.git@master @@ -30,10 +30,10 @@ Alternatively you can download the source, extract it, and install it:
3030Usage
3131-------------
3232
33- In order to use the nice IO names, simply import ` pyduino-includes ` in your SNAPpy script like this:
33+ In order to use the nice IO names, simply import ` pyduinoincludes ` in your SNAPpy script like this:
3434
3535``` python
36- from PyduinoIncludes import *
36+ from pyduinoincludes import *
3737
3838def drive_d4_pin_high ():
3939 setPinDir(D4, True )
@@ -51,7 +51,7 @@ Pins can be referenced as follows:
5151Setting up the SPI pins is very simple, too:
5252
5353``` python
54- from PyduinoIncludes .SPI import *
54+ from pyduinoincludes .SPI import *
5555
5656def my_spi_function ():
5757 spi_init() # Sets up the bit-banged SPI
0 commit comments