3 Commits

Author SHA1 Message Date
jct
764b18e539 Moved temp sensor to seperate pin (#3)
Some checks reported errors
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build was killed
2019-11-27 09:19:23 +00:00
jct
e5a64c13ed Renamed drone secret
All checks were successful
continuous-integration/drone/push Build is passing
2019-10-25 08:09:41 +00:00
338c90fb8e Moved gitea key into drone secret
All checks were successful
continuous-integration/drone/push Build is passing
2019-10-08 15:35:21 +02:00
2 changed files with 4 additions and 3 deletions

View File

@ -16,10 +16,10 @@ steps:
- name: release - name: release
image: plugins/gitea-release image: plugins/gitea-release
settings: settings:
api_key: a7f3afc9f77e721951e48b4af66d7565700b7a2e api_key:
from_secret: DRONE_ACCESS_TOKEN
base_url: https://code.jcktrue.dk base_url: https://code.jcktrue.dk
files: files:
- .pio/build/nodemcu/firmware.bin - .pio/build/nodemcu/firmware.bin
- .pio/build/nodemcu/firmware.elf
when: when:
event: tag event: tag

View File

@ -6,6 +6,7 @@ const int TEMPERATURE_INTERVAL = 60;
unsigned long lastTemperatureSent = 0; unsigned long lastTemperatureSent = 0;
const int PIN_RELAY = D1; const int PIN_RELAY = D1;
const int PIN_DHT11 = D2;
#define OUTPUT_SET(x) digitalWrite(PIN_RELAY, x ? LOW : HIGH) #define OUTPUT_SET(x) digitalWrite(PIN_RELAY, x ? LOW : HIGH)
unsigned int timer = 0; unsigned int timer = 0;
unsigned int next_timer_update = 0; unsigned int next_timer_update = 0;
@ -50,7 +51,7 @@ void setupHandler() {
powerNode.setProperty("timer").send("0"); powerNode.setProperty("timer").send("0");
dht.setup(D1, DHTesp::DHT11); // Connect DHT sensor to GPIO 17 dht.setup(PIN_DHT11, DHTesp::DHT11); // Connect DHT sensor to GPIO 17
} }
void loopHandler() { void loopHandler() {