Skip to content
Snippets Groups Projects

change(micropython): Create weak link from `(u)module` to `module`

Merged schneider requested to merge schneider/mp-weak-links into master
22 files
+ 168
139
Compare changes
  • Side-by-side
  • Inline
Files
22
@@ -28,18 +28,18 @@ The coordinate system of the BHI160 sensor data looks like this:
.. code-block:: python
import bhi160
import utime
import time
bhi = bhi160.BHI160Orientation()
while True:
samples = bhi.read()
if len(samples) == 0:
utime.sleep(0.25)
time.sleep(0.25)
continue
# print the latest sample
print(samples[-1])
utime.sleep(0.25)
time.sleep(0.25)
Orientation
Loading