Daily Totals storing, with max min average total

This commit is contained in:
Patrick McDonagh
2017-02-03 16:41:42 -06:00
parent 2730d2ee0f
commit 73d376038c
27 changed files with 960 additions and 410 deletions

View File

@@ -33,7 +33,9 @@ public class DigitalIn {
}
public int read(){
lastValue = gpioPin.read();
if (channel != 99 ) {
lastValue = gpioPin.read();
}
return lastValue;
}