Fixed apds9960 read call.
This commit is contained in:
parent
d383677b80
commit
f9ee9740ae
4 changed files with 7 additions and 7 deletions
2
firmware/firmware.ino
Normal file → Executable file
2
firmware/firmware.ino
Normal file → Executable file
|
@ -85,7 +85,7 @@ void setup() {
|
||||||
|
|
||||||
#ifdef SENSOR_APDS9960
|
#ifdef SENSOR_APDS9960
|
||||||
if (sensor_apds9960_begin()) {
|
if (sensor_apds9960_begin()) {
|
||||||
sensors[SENSOR_LIGHT] = &apds9930_light;
|
sensors[SENSOR_LIGHT] = &apds9960_light;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
0
firmware/sensor_apds9930.ino
Normal file → Executable file
0
firmware/sensor_apds9930.ino
Normal file → Executable file
2
firmware/sensor_battery.ino
Normal file → Executable file
2
firmware/sensor_battery.ino
Normal file → Executable file
|
@ -1,4 +1,4 @@
|
||||||
float _sensor_battery_saveMode = nan("no battery");
|
float _sensor_battery_saveMode = ENERGY_SAVE_MODE_DISABLED;
|
||||||
uint16_t energySavingIterations = 0;
|
uint16_t energySavingIterations = 0;
|
||||||
|
|
||||||
// Copied from https://arduinodiy.wordpress.com/2016/12/25/monitoring-lipo-battery-voltage-with-wemos-d1-minibattery-shield-and-thingspeak/
|
// Copied from https://arduinodiy.wordpress.com/2016/12/25/monitoring-lipo-battery-voltage-with-wemos-d1-minibattery-shield-and-thingspeak/
|
||||||
|
|
2
firmware/sensor_bme280.ino
Normal file → Executable file
2
firmware/sensor_bme280.ino
Normal file → Executable file
|
@ -6,7 +6,7 @@ Adafruit_BME280 _sensor_bme280;
|
||||||
bool sensor_bme280_begin(uint8_t addr) {
|
bool sensor_bme280_begin(uint8_t addr) {
|
||||||
bool status = _sensor_bme280.begin(addr);
|
bool status = _sensor_bme280.begin(addr);
|
||||||
if (status) {
|
if (status) {
|
||||||
debug("BME280 Connected!");
|
debug("BME280 Connected");
|
||||||
} else {
|
} else {
|
||||||
debug("Could not find a valid BME280 sensor, check wiring!");
|
debug("Could not find a valid BME280 sensor, check wiring!");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue