Skip to content

Commit 94729d6

Browse files
committed
Change to use machine.I2C instead of pyb.I2C for better portability across different hardware running MicroPython:
1 parent 9d8815c commit 94729d6

File tree

3 files changed

+30
-28
lines changed

3 files changed

+30
-28
lines changed

README.md

+20-18
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# MicroPython Library for Voltage and Current Sensors Using the INA219
22

3-
This MicroPython library for the [pyboard](https://store.micropython.org/#/store)
4-
supports the [INA219](http://www.ti.com/lit/ds/symlink/ina219.pdf) voltage,
5-
current and power monitor sensor from Texas Instruments. The intent of the library
6-
is to make it easy to use the quite complex functionality of this sensor.
3+
This MicroPython library for the [INA219](http://www.ti.com/lit/ds/symlink/ina219.pdf)
4+
voltage, current and power monitor sensor from Texas Instruments. The intent of
5+
the library is to make it easy to use the quite complex functionality of this
6+
sensor.
77

88
The functionality is currently under development and is based on my [INA219 library for the Raspberry Pi](https://github.com/chrisb2/pi_ina219).
99

@@ -18,7 +18,9 @@ reads are being made in a battery based system, current consumption can
1818
be minimised.
1919

2020
The library has been tested with the
21-
[Adafruit INA219 Breakout](https://www.adafruit.com/products/904).
21+
[Adafruit INA219 Breakout](https://www.adafruit.com/products/904) and the
22+
[pyboard](https://store.micropython.org/#/store). If you successfully use this
23+
library with an ESP8266, WiPy, etc, please let me know.
2224

2325
## Usage
2426

@@ -28,12 +30,12 @@ then from a REPL prompt execute:
2830

2931
```python
3032
from ina219 import INA219
31-
from pyb import I2C
33+
from machine import I2C
3234

3335
I2C_INTERFACE_NO = 2
3436
SHUNT_OHMS = 0.1
3537

36-
ina = INA219(SHUNT_OHMS, I2C(I2C_INTERFACE_NO, I2C.MASTER))
38+
ina = INA219(SHUNT_OHMS, I2C(I2C_INTERFACE_NO))
3739
ina.configure()
3840
print("Bus Voltage: %.3f V" % ina.voltage())
3941
print("Current: %.3f mA" % ina.current())
@@ -69,12 +71,12 @@ The downside of this approach is reduced current and power resolution.
6971
```python
7072
from ina219 import INA219
7173
from ina219 import DeviceRangeError
72-
from pyb import I2C
74+
from machine import I2C
7375

7476
I2C_INTERFACE_NO = 2
7577
SHUNT_OHMS = 0.1
7678

77-
ina = INA219(SHUNT_OHMS, I2C(I2C_INTERFACE_NO, I2C.MASTER))
79+
ina = INA219(SHUNT_OHMS, I2C(I2C_INTERFACE_NO))
7880
ina.configure()
7981

8082
print("Bus Voltage: %.3f V" % ina.voltage())
@@ -104,13 +106,13 @@ avoid invalid readings being taken.
104106
```python
105107
from ina219 import INA219
106108
from ina219 import DeviceRangeError
107-
from pyb import I2C
109+
from machine import I2C
108110

109111
I2C_INTERFACE_NO = 2
110112
SHUNT_OHMS = 0.1
111113
MAX_EXPECTED_AMPS = 0.2
112114

113-
ina = INA219(SHUNT_OHMS, I2C(I2C_INTERFACE_NO, I2C.MASTER), MAX_EXPECTED_AMPS)
115+
ina = INA219(SHUNT_OHMS, I2C(I2C_INTERFACE_NO), MAX_EXPECTED_AMPS)
114116
ina.configure(ina.RANGE_16V)
115117

116118
print("Bus Voltage: %.3f V" % ina.voltage())
@@ -133,13 +135,13 @@ and power values if a current overflow occurs.
133135
```python
134136
from ina219 import INA219
135137
from ina219 import DeviceRangeError
136-
from pyb import I2C
138+
from machine import I2C
137139

138140
I2C_INTERFACE_NO = 2
139141
SHUNT_OHMS = 0.1
140142
MAX_EXPECTED_AMPS = 0.2
141143

142-
ina = INA219(SHUNT_OHMS, I2C(2, I2C.MASTER), MAX_EXPECTED_AMPS)
144+
ina = INA219(SHUNT_OHMS, I2C(I2C_INTERFACE_NO), MAX_EXPECTED_AMPS)
143145
ina.configure(ina.RANGE_16V, ina.GAIN_1_40MV)
144146

145147
print("Bus Voltage: %.3f V" % ina.voltage())
@@ -156,7 +158,7 @@ except DeviceRangeError as e:
156158
The sensor address may be altered as follows:
157159

158160
```python
159-
ina = INA219(SHUNT_OHMS, I2C(2, I2C.MASTER), MAX_EXPECTED_AMPS, address=0x41)
161+
ina = INA219(SHUNT_OHMS, I2C(2), MAX_EXPECTED_AMPS, address=0x41)
160162
```
161163

162164
### Low Power Mode
@@ -180,8 +182,8 @@ returned from a read will be the previous value taken before sleeping.
180182
* `INA219()` constructs the class.
181183
The arguments, are:
182184
* shunt_ohms: The value of the shunt resistor in Ohms (mandatory).
183-
* i2c: an instance of the I2C class from the pyb module, either
184-
_I2C(1, I2C.MASTER)_ or _I2C(2, I2C.MASTER)_ (mandatory).
185+
* i2c: an instance of the I2C class from the _machine_ module, either
186+
_I2C(1)_ or _I2C(2)_ (mandatory).
185187
* max_expected_amps: The maximum expected current in Amps (optional).
186188
* address: The I2C address of the INA219, defaults to *0x40* (optional).
187189
* log_level: Set to _logging.INFO_ to see the detailed calibration
@@ -265,13 +267,13 @@ To understand the calibration calculation results and automatic gain
265267
increases, informational output can be enabled with:
266268

267269
```python
268-
ina = INA219(SHUNT_OHMS, I2C(2, I2C.MASTER), log_level=logging.INFO)
270+
ina = INA219(SHUNT_OHMS, I2C(2), log_level=logging.INFO)
269271
```
270272

271273
Detailed logging of device register operations can be enabled with:
272274

273275
```python
274-
ina = INA219(SHUNT_OHMS, I2C(2, I2C.MASTER), log_level=logging.DEBUG)
276+
ina = INA219(SHUNT_OHMS, I2C(2), log_level=logging.DEBUG)
275277
```
276278

277279
## Coding Standard

example.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
"""
66

77
from ina219 import INA219
8-
from pyb import I2C
8+
from machine import I2C
99

1010
# Edit to match interface the sensor is connect to (1 or 2).
1111
I2C_INTERFACE_NO = 2
1212
SHUNT_OHMS = 0.1
1313

14-
ina = INA219(SHUNT_OHMS, I2C(I2C_INTERFACE_NO, I2C.MASTER))
14+
ina = INA219(SHUNT_OHMS, I2C(I2C_INTERFACE_NO))
1515
ina.configure()
1616
print("Bus Voltage: %.3f V" % ina.voltage())
1717
print("Current: %.3f mA" % ina.current())

ina219.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
"""Raspberry Pi library for the INA219 sensor.
1+
"""MicroPython library for the INA219 sensor.
22
3-
This library supports the INA219 sensor from Texas Instruments with a Raspberry
4-
Pi using the I2C bus.
3+
This library supports the INA219 sensor from Texas Instruments with
4+
MicroPython using the I2C bus.
55
"""
66
import logging
77
import utime
@@ -10,7 +10,7 @@
1010

1111

1212
class INA219:
13-
"""Provides all the functionality to interact with the INA21 sensor."""
13+
"""Provides all the functionality to interact with the INA219 sensor."""
1414

1515
RANGE_16V = const(0) # Range 0-16 volts
1616
RANGE_32V = const(1) # Range 0-32 volts
@@ -116,8 +116,8 @@ def __init__(self, shunt_ohms, i2c, max_expected_amps=None,
116116
117117
Arguments:
118118
shunt_ohms -- value of shunt resistor in Ohms (mandatory).
119-
i2c -- an instance of the I2C class from the pyb module, either
120-
I2C(1, I2C.MASTER) or I2C(2, I2C.MASTER) (mandatory).
119+
i2c -- an instance of the I2C class from the *machine* module, either
120+
I2C(1) or I2C(2) (mandatory).
121121
max_expected_amps -- the maximum expected current in Amps (optional).
122122
address -- the I2C address of the INA219, defaults to
123123
*0x40* (optional).
@@ -388,13 +388,13 @@ def __write_register(self, register, register_value):
388388
self.__log_register_operation("write", register, register_value)
389389

390390
register_bytes = self.__to_bytes(register_value)
391-
self._i2c.mem_write(register_bytes, self._address, register)
391+
self._i2c.writeto_mem(self._address, register, register_bytes)
392392

393393
def __to_bytes(self, register_value):
394394
return bytearray([(register_value >> 8) & 0xFF, register_value & 0xFF])
395395

396396
def __read_register(self, register, negative_value_supported=False):
397-
register_bytes = self._i2c.mem_read(2, self._address, register)
397+
register_bytes = self._i2c.readfrom_mem(self._address, register, 2)
398398
register_value = int.from_bytes(register_bytes, 'big')
399399
if negative_value_supported:
400400
# Two's compliment

0 commit comments

Comments
 (0)