mirror of
https://github.com/xoseperez/espurna.git
synced 2026-03-19 14:47:07 +01:00
sensor/ads1x15: fix changing sensor type when reading adc
This commit is contained in:
@@ -327,7 +327,7 @@ class EmonADS1X15Sensor : public EmonSensor {
|
||||
unsigned int readADC(unsigned char channel) {
|
||||
UNUSED(channel);
|
||||
unsigned int value = i2c_read_uint16(_address, ADS1X15_REG_POINTER_CONVERT);
|
||||
if (_type = ADS1X15_CHIP_ADS1015) value >>= ADS1015_BIT_SHIFT;
|
||||
if (_type == ADS1X15_CHIP_ADS1015) value >>= ADS1015_BIT_SHIFT;
|
||||
delayMicroseconds(500);
|
||||
return value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user