Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: IZU2020_AVIONICS IZU2020_AVIONICS
Diff: PQINA226.cpp
- Revision:
- 1:13a0acb5a366
- Parent:
- 0:a88db0ffce6e
- Child:
- 2:2a98c184354f
--- a/PQINA226.cpp Sun Nov 24 10:13:37 2019 +0000
+++ b/PQINA226.cpp Tue Dec 03 13:40:02 2019 +0000
@@ -4,7 +4,7 @@
INA226::INA226(I2C &i2c, A0_t A0, A1_t A1)
{
_i2c = &i2c;
- _addr = 0b1000000 | A1 << 2 | A0;
+ _addr = (0b1000000 | A1 << 2 | A0) << 1;
_i2c->frequency(400000);
}