This commit is contained in:
Timm Bogner 2022-11-19 19:59:42 -06:00
parent 72be302763
commit d088163d3d
2 changed files with 3 additions and 3 deletions

View File

@ -17,6 +17,6 @@ void setup() {
pinMode(COIL_PIN, OUTPUT);
}
void loop() {
if (status) digitalWrite(COIL_PIN, LOW);
else digitalWrite(COIL_PIN, HIGH);
if (status) digitalWrite(COIL_PIN, HIGH);
else digitalWrite(COIL_PIN, LOW);
}

View File

@ -10,7 +10,7 @@
#define USE_ESPNOW
//#define USE_LORA
#define DEEP_SLEEP
//#define POWER_CTRL 14
#define POWER_CTRL 4
#define FDRS_DEBUG
//SPI Configuration -- Needed only on chipsets with multiple SPI interfaces (ESP32)