mirror of
https://github.com/timmbogner/Farm-Data-Relay-System
synced 2024-11-10 07:10:42 +00:00
Return random vaule for sensor nodes
the return value in the sensor sketches was missing the random function. Fixed that.
This commit is contained in:
parent
7c15bdf675
commit
7526439d85
@ -29,5 +29,5 @@ float readTemp() {
|
||||
}
|
||||
|
||||
float readHum() {
|
||||
return (0,100);
|
||||
return random(0,100);
|
||||
}
|
||||
|
@ -29,5 +29,5 @@ float readTemp() {
|
||||
}
|
||||
|
||||
float readHum() {
|
||||
return (0,100);
|
||||
return random(0,100);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user