Skip to content

Commit 1eeac79

Browse files
author
David R Forrest
committed
Add RELAY_ON /RELAY_OFF per br3ttb#136
1 parent c5d1d17 commit 1eeac79

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

examples/PID_RelayOutput/PID_RelayOutput.ino

+10-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818

1919
#define PIN_INPUT 0
2020
#define RELAY_PIN 6
21+
#define RELAY_ON LOW
22+
#define RELAY_OFF HIGH
2123

2224
//Define Variables we'll be connecting to
2325
double Setpoint, Input, Output;
@@ -55,8 +57,14 @@ void loop()
5557
{ //time to shift the Relay Window
5658
windowStartTime += WindowSize;
5759
}
58-
if (Output < millis() - windowStartTime) digitalWrite(RELAY_PIN, HIGH);
59-
else digitalWrite(RELAY_PIN, LOW);
60+
if (Output > millis() - windowStartTime)
61+
{
62+
digitalWrite(RELAY_PIN, RELAY_ON);
63+
}
64+
else
65+
{
66+
digitalWrite(RELAY_PIN, RELAY_OFF);
67+
}
6068

6169
}
6270

0 commit comments

Comments
 (0)