weatherstation/firmware/sensors.ino
2017-11-07 22:20:14 +01:00

14 lines
129 B
C++

float fetchTemperature() {
return 22.5;
}
float fetchHumidity() {
return 60.0;
}
float fetchLight() {
return 2000.4;
}