You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added support for the `SpiDev <https://pypi.org/project/spidev/>`_ module
134
134
135
-
.. important:: This library supports Python 3.7 or newer because it use
136
-
the function :py:func:`time.monotonic_ns()` which returns an arbitrary time "counter"
137
-
as an `int` of nanoseconds. CircuitPython firmware also supports :py:func:`time.monotonic_ns()`.
135
+
.. important::
136
+
This library supports Python 3.7 or newer because it uses the function
137
+
:py:func:`time.monotonic_ns()` which returns an arbitrary time "counter" as an `int` of
138
+
nanoseconds. CircuitPython firmware also supports :py:func:`time.monotonic_ns()`.
138
139
139
140
140
141
Installing from PyPI
@@ -196,7 +197,10 @@ to the MCU via a digital input pin during the interrupt example.
196
197
Using The Examples
197
198
==================
198
199
199
-
See `examples <examples.html>`_ for testing certain features of this the library. The examples were developed and tested on both Raspberry Pi and ItsyBitsy M4. Pins have been hard coded in the examples for the corresponding device, so please adjust these accordingly to your circuitpython device if necessary.
200
+
See `examples <examples.html>`_ for testing certain features of this the library.
201
+
The examples were developed and tested on both Raspberry Pi and ItsyBitsy M4.
202
+
Pins have been hard coded in the examples for the corresponding device, so please adjust these
203
+
accordingly to your circuitpython device if necessary.
200
204
201
205
For an interactive REPL
202
206
---------------------------
@@ -205,7 +209,8 @@ All examples can be imported from within an interactive python REPL.
205
209
206
210
1. Make sure the examples are located in the current working directory.
207
211
On CircuitPython devices, this will be the root directory of the CIRCUITPY drive.
208
-
2. Import everything from desired the example. The following code snippet demonstrates running the `Simple Test example <examples.html#simple-test>`_
212
+
2. Import everything from the desired example. The following code snippet demonstrates running the
213
+
`Simple Test example <examples.html#simple-test>`_
0 commit comments