EnvironmentSensorManager: allow for INA3221 macro overrides
Allow for platformio.ini files to override the default values for the following INA3221 related macros: TELEM_INA3221_ADDRESS TELEM_INA3221_SHUNT_VALUE TELEM_INA3221_NUM_CHANNELS Signed-off-by: Paul Moore <paul@paul-moore.com>
This commit is contained in:
@@ -62,9 +62,15 @@ LPS22HBClass LPS22HB(*TELEM_WIRE);
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENV_INCLUDE_INA3221
|
#if ENV_INCLUDE_INA3221
|
||||||
|
#ifndef TELEM_INA3221_ADDRESS
|
||||||
#define TELEM_INA3221_ADDRESS 0x42 // INA3221 3 channel current sensor I2C address
|
#define TELEM_INA3221_ADDRESS 0x42 // INA3221 3 channel current sensor I2C address
|
||||||
|
#endif
|
||||||
|
#ifndef TELEM_INA3221_SHUNT_VALUE
|
||||||
#define TELEM_INA3221_SHUNT_VALUE 0.100 // most variants will have a 0.1 ohm shunts
|
#define TELEM_INA3221_SHUNT_VALUE 0.100 // most variants will have a 0.1 ohm shunts
|
||||||
|
#endif
|
||||||
|
#ifndef TELEM_INA3221_NUM_CHANNELS
|
||||||
#define TELEM_INA3221_NUM_CHANNELS 3
|
#define TELEM_INA3221_NUM_CHANNELS 3
|
||||||
|
#endif
|
||||||
#include <Adafruit_INA3221.h>
|
#include <Adafruit_INA3221.h>
|
||||||
static Adafruit_INA3221 INA3221;
|
static Adafruit_INA3221 INA3221;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user