adafruit-circuitpython-mlx90395 1.0.9__py3-none-any.whl → 1.0.11__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- {adafruit_circuitpython_mlx90395-1.0.9.dist-info → adafruit_circuitpython_mlx90395-1.0.11.dist-info}/METADATA +1 -1
- adafruit_circuitpython_mlx90395-1.0.11.dist-info/RECORD +6 -0
- {adafruit_circuitpython_mlx90395-1.0.9.dist-info → adafruit_circuitpython_mlx90395-1.0.11.dist-info}/WHEEL +1 -1
- adafruit_mlx90395.py +1 -3
- adafruit_circuitpython_mlx90395-1.0.9.dist-info/RECORD +0 -6
- {adafruit_circuitpython_mlx90395-1.0.9.dist-info → adafruit_circuitpython_mlx90395-1.0.11.dist-info}/LICENSE +0 -0
- {adafruit_circuitpython_mlx90395-1.0.9.dist-info → adafruit_circuitpython_mlx90395-1.0.11.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: adafruit-circuitpython-mlx90395
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.11
|
4
4
|
Summary: CircuitPython helper library for using the Adafruit MLX90395 tri-Axis magnetometer breakout
|
5
5
|
Author-email: Adafruit Industries <circuitpython@adafruit.com>
|
6
6
|
License: MIT
|
@@ -0,0 +1,6 @@
|
|
1
|
+
adafruit_mlx90395.py,sha256=JevPcrKtYjVx_dnloRPop-_CTVpIsZf2zq5IsnQMHUo,8431
|
2
|
+
adafruit_circuitpython_mlx90395-1.0.11.dist-info/LICENSE,sha256=lL6CpRSFW8FPg_7Uk25HW3Ie6YBGNLf4Ja6oU0sYvg0,1104
|
3
|
+
adafruit_circuitpython_mlx90395-1.0.11.dist-info/METADATA,sha256=ozMIxboU3tDGzQQwBBKxoJdrgyVY8oCRr6pSXg8zpeY,3986
|
4
|
+
adafruit_circuitpython_mlx90395-1.0.11.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
5
|
+
adafruit_circuitpython_mlx90395-1.0.11.dist-info/top_level.txt,sha256=6x7CKc5S9auflYW9wSeTR-y5HkkVCrRxGdAWKfaIHkc,18
|
6
|
+
adafruit_circuitpython_mlx90395-1.0.11.dist-info/RECORD,,
|
adafruit_mlx90395.py
CHANGED
@@ -55,7 +55,7 @@ try:
|
|
55
55
|
except ImportError:
|
56
56
|
pass
|
57
57
|
|
58
|
-
__version__ = "1.0.
|
58
|
+
__version__ = "1.0.11"
|
59
59
|
__repo__ = "https:#github.com/adafruit/Adafruit_CircuitPython_MLX90395.git"
|
60
60
|
|
61
61
|
_DEFAULT_ADDR = const(0x0C) ## Can also be 0x18, depending on IC */
|
@@ -233,7 +233,6 @@ class MLX90395:
|
|
233
233
|
self._gain_val = value
|
234
234
|
|
235
235
|
def _command(self, command_id: int) -> int:
|
236
|
-
|
237
236
|
buffer = bytearray([0x80, command_id])
|
238
237
|
with self.i2c_device as i2c:
|
239
238
|
i2c.write_then_readinto(buffer, buffer, in_end=1)
|
@@ -254,7 +253,6 @@ class MLX90395:
|
|
254
253
|
return res
|
255
254
|
|
256
255
|
def _read_measurement(self) -> Tuple[float, float, float]:
|
257
|
-
|
258
256
|
# clear the buffer
|
259
257
|
for i in range(len(self._buffer)): # pylint: disable=consider-using-enumerate
|
260
258
|
self._buffer[i] = 0
|
@@ -1,6 +0,0 @@
|
|
1
|
-
adafruit_mlx90395.py,sha256=VHhFHX3WHLxgX_ey84M4vECF0P2Ss-MA6VLfn3q6OO0,8432
|
2
|
-
adafruit_circuitpython_mlx90395-1.0.9.dist-info/LICENSE,sha256=lL6CpRSFW8FPg_7Uk25HW3Ie6YBGNLf4Ja6oU0sYvg0,1104
|
3
|
-
adafruit_circuitpython_mlx90395-1.0.9.dist-info/METADATA,sha256=o4QcLdcGmFCk9nTuHjWDJ5aIgoohmT5CUXHTt5IgipA,3985
|
4
|
-
adafruit_circuitpython_mlx90395-1.0.9.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
5
|
-
adafruit_circuitpython_mlx90395-1.0.9.dist-info/top_level.txt,sha256=6x7CKc5S9auflYW9wSeTR-y5HkkVCrRxGdAWKfaIHkc,18
|
6
|
-
adafruit_circuitpython_mlx90395-1.0.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|