diff options
| author | Donald Delmar Davis <don@suspectdevices.com> | 2017-10-27 14:45:54 -0700 |
|---|---|---|
| committer | Donald Delmar Davis <don@suspectdevices.com> | 2017-10-27 14:45:54 -0700 |
| commit | abfbbae6cfffb7cd74872b724a40ed021354123f (patch) | |
| tree | eaaaef550cdc666b34e97573f23d26313ec68c5d /Arduino/ems-templates | |
| parent | 6e63962d8d4b9c4dfee50c984be35646aea2a133 (diff) | |
Generalize EMS as much as possible before implementing gpio and proximity sensors.
Diffstat (limited to 'Arduino/ems-templates')
| -rwxr-xr-x | Arduino/ems-templates/Heater.h | 4 | ||||
| -rwxr-xr-x | Arduino/ems-templates/Pump.h | 2 | ||||
| -rwxr-xr-x | Arduino/ems-templates/Thermocouple.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Arduino/ems-templates/Heater.h b/Arduino/ems-templates/Heater.h index a498e27..52e8137 100755 --- a/Arduino/ems-templates/Heater.h +++ b/Arduino/ems-templates/Heater.h @@ -6,14 +6,14 @@ #ifndef HEATER_H #define HEATER_H -#include "Common.h" +#include "Configuration.h" #include "TaskScheduler.h" #include "Monitor.h" #include "Machine.h" #include "Thermocouple.h" -// move to common.h +// move to Configuration.h #define HEATER_OFF 0 #define HEATER_OUT_MAX 255 diff --git a/Arduino/ems-templates/Pump.h b/Arduino/ems-templates/Pump.h index c8293dd..6a41ed5 100755 --- a/Arduino/ems-templates/Pump.h +++ b/Arduino/ems-templates/Pump.h @@ -4,7 +4,7 @@ #ifndef PUMP_H #define PUMP_H -#include "Common.h" +#include "Configuration.h" #include "TaskScheduler.h" #include "Monitor.h" #include "Machine.h" diff --git a/Arduino/ems-templates/Thermocouple.h b/Arduino/ems-templates/Thermocouple.h index 13e72a3..368189b 100755 --- a/Arduino/ems-templates/Thermocouple.h +++ b/Arduino/ems-templates/Thermocouple.h @@ -12,7 +12,7 @@ #include <SPI.h> #include "Adafruit_MAX31855.h" -#include "Common.h" +#include "Configuration.h" #include "TaskScheduler.h" #include "Monitor.h" #include "Machine.h" |
