Skip to content
This repository has been archived by the owner on Dec 18, 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 11, 2023
1 parent bf93fb4 commit 23ab88c
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 9 deletions.
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,3 @@ Take a look at the examples directory
Documentation
=============
API documentation for this library can be found on `Read the Docs <https://micropython-qmc5883l.readthedocs.io/en/latest/>`_.

1 change: 0 additions & 1 deletion examples/qmc5883l_advanced_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
# SPDX-License-Identifier: MIT
# pylint: disable=protected-access

import time
from machine import Pin, I2C
from micropython_qmc5883l import qmc5883l

Expand Down
1 change: 1 addition & 0 deletions examples/qmc5883l_magnetic_compass.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"""

import time
from math import atan2, degrees
from machine import Pin, I2C
from micropython_qmc5883l import qmc5883l

Expand Down
2 changes: 1 addition & 1 deletion examples/qmc5883l_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
while True:
mag_x, mag_y, mag_z = qmc.magnetic
print("x:{:.2f}Gs, y:{:.2f}Gs, z{:.2f}Gs".format(mag_x, mag_y, mag_z))
time.sleep(0.3)
time.sleep(0.3)
6 changes: 0 additions & 6 deletions micropython_qmc5883l/qmc5883l.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@
from micropython import const
from micropython_qmc5883l.i2c_helpers import CBits, RegisterStruct

try:
from typing import Tuple
except ImportError:
pass


__version__ = "0.0.0+auto.0"
__repo__ = "https://github.com/jposada202020/MicroPython_QMC5883L.git"

Expand Down

0 comments on commit 23ab88c

Please sign in to comment.