Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jposada202020 committed Jun 15, 2023
1 parent 08eda76 commit 75f73b6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,3 @@ Take a look at the examples directory
Documentation
=============
API documentation for this library can be found on `Read the Docs <https://micropython-bma400.readthedocs.io/en/latest/>`_.

2 changes: 1 addition & 1 deletion examples/bma400_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
while True:
accx, accy, accz = bma.acceleration
print("x:{:.2f}G y:{:.2f}G z:{:.2f}G".format(accx, accy, accz))
time.sleep(0.5)
time.sleep(0.5)
1 change: 1 addition & 0 deletions micropython_bma400/bma400.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"""

import time
from micropython import const
from micropython_bma400.i2c_helpers import CBits, RegisterStruct

Expand Down

0 comments on commit 75f73b6

Please sign in to comment.