weatherstation/firmware/sensors.ino

14 lines
129 B
Arduino
Raw Normal View History

2017-11-07 22:20:14 +01:00
float fetchTemperature() {
return 22.5;
}
float fetchHumidity() {
return 60.0;
}
float fetchLight() {
return 2000.4;
}