1
1
# MicroPython Library for Voltage and Current Sensors Using the INA219
2
2
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.
7
7
8
8
The functionality is currently under development and is based on my [ INA219 library for the Raspberry Pi] ( https://github.com/chrisb2/pi_ina219 ) .
9
9
@@ -18,7 +18,9 @@ reads are being made in a battery based system, current consumption can
18
18
be minimised.
19
19
20
20
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.
22
24
23
25
## Usage
24
26
@@ -28,12 +30,12 @@ then from a REPL prompt execute:
28
30
29
31
``` python
30
32
from ina219 import INA219
31
- from pyb import I2C
33
+ from machine import I2C
32
34
33
35
I2C_INTERFACE_NO = 2
34
36
SHUNT_OHMS = 0.1
35
37
36
- ina = INA219(SHUNT_OHMS , I2C(I2C_INTERFACE_NO , I2C . MASTER ))
38
+ ina = INA219(SHUNT_OHMS , I2C(I2C_INTERFACE_NO ))
37
39
ina.configure()
38
40
print (" Bus Voltage: %.3f V" % ina.voltage())
39
41
print (" Current: %.3f mA" % ina.current())
@@ -69,12 +71,12 @@ The downside of this approach is reduced current and power resolution.
69
71
``` python
70
72
from ina219 import INA219
71
73
from ina219 import DeviceRangeError
72
- from pyb import I2C
74
+ from machine import I2C
73
75
74
76
I2C_INTERFACE_NO = 2
75
77
SHUNT_OHMS = 0.1
76
78
77
- ina = INA219(SHUNT_OHMS , I2C(I2C_INTERFACE_NO , I2C . MASTER ))
79
+ ina = INA219(SHUNT_OHMS , I2C(I2C_INTERFACE_NO ))
78
80
ina.configure()
79
81
80
82
print (" Bus Voltage: %.3f V" % ina.voltage())
@@ -104,13 +106,13 @@ avoid invalid readings being taken.
104
106
``` python
105
107
from ina219 import INA219
106
108
from ina219 import DeviceRangeError
107
- from pyb import I2C
109
+ from machine import I2C
108
110
109
111
I2C_INTERFACE_NO = 2
110
112
SHUNT_OHMS = 0.1
111
113
MAX_EXPECTED_AMPS = 0.2
112
114
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 )
114
116
ina.configure(ina.RANGE_16V )
115
117
116
118
print (" Bus Voltage: %.3f V" % ina.voltage())
@@ -133,13 +135,13 @@ and power values if a current overflow occurs.
133
135
``` python
134
136
from ina219 import INA219
135
137
from ina219 import DeviceRangeError
136
- from pyb import I2C
138
+ from machine import I2C
137
139
138
140
I2C_INTERFACE_NO = 2
139
141
SHUNT_OHMS = 0.1
140
142
MAX_EXPECTED_AMPS = 0.2
141
143
142
- ina = INA219(SHUNT_OHMS , I2C(2 , I2C . MASTER ), MAX_EXPECTED_AMPS )
144
+ ina = INA219(SHUNT_OHMS , I2C(I2C_INTERFACE_NO ), MAX_EXPECTED_AMPS )
143
145
ina.configure(ina.RANGE_16V , ina.GAIN_1_40MV )
144
146
145
147
print (" Bus Voltage: %.3f V" % ina.voltage())
@@ -156,7 +158,7 @@ except DeviceRangeError as e:
156
158
The sensor address may be altered as follows:
157
159
158
160
``` python
159
- ina = INA219(SHUNT_OHMS , I2C(2 , I2C . MASTER ), MAX_EXPECTED_AMPS , address = 0x 41 )
161
+ ina = INA219(SHUNT_OHMS , I2C(2 ), MAX_EXPECTED_AMPS , address = 0x 41 )
160
162
```
161
163
162
164
### Low Power Mode
@@ -180,8 +182,8 @@ returned from a read will be the previous value taken before sleeping.
180
182
* ` INA219() ` constructs the class.
181
183
The arguments, are:
182
184
* 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).
185
187
* max_expected_amps: The maximum expected current in Amps (optional).
186
188
* address: The I2C address of the INA219, defaults to * 0x40* (optional).
187
189
* log_level: Set to _ logging.INFO_ to see the detailed calibration
@@ -265,13 +267,13 @@ To understand the calibration calculation results and automatic gain
265
267
increases, informational output can be enabled with:
266
268
267
269
``` 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 )
269
271
```
270
272
271
273
Detailed logging of device register operations can be enabled with:
272
274
273
275
``` 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 )
275
277
```
276
278
277
279
## Coding Standard
0 commit comments