-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v2.0.0 is a major update with the project refactored to separate concerns into their own modules. - Added: OAuth authentication support - Added: ESP8266 board compilation support - Added: Over-The-Air (OTA) firmware update support - Added: New feature to automatically close door after set time - Added: New API command /device to get device info - Added: MIT license and credits - Improved: Complete refactor - Improved: Debug and logging - Improved: HTTP request processing - Improved: WiFi connection logic (no longer blocks processing)
- Loading branch information
Showing
36 changed files
with
4,732 additions
and
733 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,345 @@ | ||
/* | ||
MIT License | ||
Copyright (c) 2017 Warren Ashcroft | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
*/ | ||
|
||
#include "GarageDoorController.h" | ||
|
||
GarageDoorController::GarageDoorController() | ||
{ | ||
this->_sensorOpenDebouncer = new Bounce(); | ||
this->_sensorClosedDebouncer = new Bounce(); | ||
this->_lightInputDebouncer = new Bounce(); | ||
} | ||
|
||
GarageDoorController::~GarageDoorController() | ||
{ | ||
} | ||
|
||
void GarageDoorController::setup() | ||
{ | ||
// Configure input pins and debouncing | ||
pinMode(SENSOR_OPEN_INPUT_PIN, INPUT_PULLUP); | ||
this->_sensorOpenDebouncer->attach(SENSOR_OPEN_INPUT_PIN); | ||
this->_sensorOpenDebouncer->interval(50); | ||
|
||
pinMode(SENSOR_CLOSED_INPUT_PIN, INPUT_PULLUP); | ||
this->_sensorClosedDebouncer->attach(SENSOR_CLOSED_INPUT_PIN); | ||
this->_sensorClosedDebouncer->interval(50); | ||
|
||
pinMode(LIGHT_INPUT_PIN, INPUT_PULLUP); | ||
this->_lightInputDebouncer->attach(LIGHT_INPUT_PIN); | ||
this->_lightInputDebouncer->interval(50); | ||
|
||
// Configure output pins | ||
pinMode(LED_OUTPUT_PIN, OUTPUT); | ||
digitalWrite(LED_OUTPUT_PIN, LED_BUILTIN_OFF); | ||
|
||
pinMode(DOOR_OUTPUT_OPEN_PIN, OUTPUT); | ||
pinMode(DOOR_OUTPUT_CLOSE_PIN, OUTPUT); | ||
pinMode(LIGHT_OUTPUT_PIN, OUTPUT); | ||
} | ||
|
||
void GarageDoorController::loop() | ||
{ | ||
// Handle debouncing | ||
LOGPRINTLN_TRACE("Calling _debouncers.update()"); | ||
this->_sensorOpenDebouncer->update(); | ||
this->_sensorClosedDebouncer->update(); | ||
this->_lightInputDebouncer->update(); | ||
|
||
// Update states | ||
LOGPRINTLN_TRACE("Calling _monitorInputs()"); | ||
this->_monitorInputs(); | ||
} | ||
|
||
void GarageDoorController::operateDoor(bool state) | ||
{ | ||
LOGPRINTLN_VERBOSE("Entered operateDoor()"); | ||
|
||
uint8_t pin = 0; | ||
uint8_t cycles = 0; | ||
uint8_t DOOR_OUTPUT_PIN = DOOR_OUTPUT_OPEN_PIN; | ||
|
||
if (state) { | ||
if (DOOR_OUTPUT_OPEN_PIN != DOOR_OUTPUT_CLOSE_PIN) { | ||
pin = DOOR_OUTPUT_OPEN_PIN; | ||
cycles = 1; | ||
|
||
} else if ((this->DoorState == DOORSTATE_CLOSED) || (this->DoorState == DOORSTATE_STOPPED_CLOSING) || (this->DoorState == DOORSTATE_UNKNOWN)) { | ||
pin = DOOR_OUTPUT_PIN; | ||
cycles = 1; | ||
|
||
} else if (this->DoorState == DOORSTATE_CLOSING) { | ||
pin = DOOR_OUTPUT_PIN; | ||
cycles = 2; | ||
|
||
} else if (this->DoorState == DOORSTATE_STOPPED_OPENING) { | ||
pin = DOOR_OUTPUT_PIN; | ||
cycles = 3; | ||
|
||
} | ||
|
||
this->DoorState = DOORSTATE_OPENING; | ||
|
||
} else { | ||
if (DOOR_OUTPUT_OPEN_PIN != DOOR_OUTPUT_CLOSE_PIN) { | ||
pin = DOOR_OUTPUT_CLOSE_PIN; | ||
cycles = 1; | ||
|
||
} else if ((this->DoorState == DOORSTATE_OPEN) || (this->DoorState == DOORSTATE_STOPPED_OPENING) || (this->DoorState == DOORSTATE_UNKNOWN)) { | ||
pin = DOOR_OUTPUT_PIN; | ||
cycles = 1; | ||
|
||
} else if (this->DoorState == DOORSTATE_OPENING) { | ||
pin = DOOR_OUTPUT_PIN; | ||
cycles = 2; | ||
|
||
} else if (this->DoorState == DOORSTATE_STOPPED_CLOSING) { | ||
pin = DOOR_OUTPUT_PIN; | ||
cycles = 3; | ||
|
||
} | ||
|
||
this->DoorState = DOORSTATE_CLOSING; | ||
} | ||
|
||
if ((pin > 0) && (cycles > 0)) { | ||
LOGPRINT_INFO("\nOUTPUT: Changing garage door state to: "); | ||
LOGPRINTLN_INFO(GarageDoorController::stringFromDoorState(this->DoorState)); | ||
this->_operateDoor(pin, cycles); | ||
} | ||
} | ||
|
||
void GarageDoorController::switchLight(bool state) | ||
{ | ||
LOGPRINTLN_VERBOSE("Entered switchLight()"); | ||
this->LightOutput = (bool)digitalRead(LIGHT_OUTPUT_PIN); | ||
|
||
if (this->LightOutput != state) { | ||
LOGPRINT_INFO("\nOUTPUT: Changing garage light state to: "); | ||
LOGPRINTLN_INFO(state); | ||
digitalWrite(LIGHT_OUTPUT_PIN, state); | ||
} | ||
} | ||
|
||
void GarageDoorController::getJsonStatus(char *const dest, size_t destSize) | ||
{ | ||
LOGPRINTLN_VERBOSE("Entered getJsonStatus()"); | ||
StaticJsonBuffer<200> jsonBuffer; | ||
JsonObject &jsonRoot = jsonBuffer.createObject(); | ||
|
||
jsonRoot["result"] = 200; | ||
jsonRoot["success"] = true; | ||
jsonRoot["message"] = "OK"; | ||
jsonRoot["light-input"] = this->LightInput; | ||
jsonRoot["light-requested"] = this->LightRequested; | ||
jsonRoot["light-state"] = this->LightState; | ||
jsonRoot["sensor-open"] = this->SensorOpen; | ||
jsonRoot["sensor-closed"] = this->SensorClosed; | ||
jsonRoot["door-state"] = GarageDoorController::stringFromDoorState(this->DoorState); | ||
|
||
jsonRoot.printTo(dest, destSize); | ||
} | ||
|
||
uint16_t GarageDoorController::requestHandler(Client &client, const char *requestMethod, const char *requestUrl, HashMap<char *, char *, 24> &requestQuery) | ||
{ | ||
LOGPRINTLN_VERBOSE("Entered _requestHandler()"); | ||
|
||
if (strcmp(requestMethod, "GET") == 0) { | ||
if (strcasecmp(requestUrl, "/controller") == 0) { | ||
char jsonStatus[256]; | ||
this->getJsonStatus(jsonStatus, sizeof(jsonStatus)); | ||
HttpWebServer::send_response(client, 200, (uint8_t *)jsonStatus, strlen(jsonStatus)); | ||
return 0; | ||
|
||
} else { | ||
return 404; | ||
} | ||
} else if (strcmp(requestMethod, "PUT") == 0) { | ||
if ((strcasecmp(requestUrl, "/controller/light/on") == 0) || (strcasecmp(requestUrl, "/controller/light/off") == 0)) { | ||
if (striendswith(requestUrl, "/on")) { | ||
this->LightRequested = true; | ||
} else if (striendswith(requestUrl, "off")) { | ||
this->LightRequested = false; | ||
} | ||
|
||
// Switch the light | ||
this->LightState = (this->LightInput || this->LightRequested); | ||
this->switchLight(this->LightState); | ||
return 202; | ||
|
||
} else if ((strcasecmp(requestUrl, "/controller/door/open") == 0) || (strcasecmp(requestUrl, "/controller/door/close") == 0)) { | ||
bool doorOpen = false; | ||
|
||
if (striendswith(requestUrl, "/open")) { | ||
doorOpen = true; | ||
} else if (striendswith(requestUrl, "/close")) { | ||
doorOpen = false; | ||
} | ||
|
||
// Operate the door | ||
this->operateDoor(doorOpen); | ||
return 202; | ||
|
||
} else { | ||
return 404; | ||
} | ||
} else { | ||
return 405; | ||
} | ||
} | ||
|
||
char *GarageDoorController::stringFromDoorState(enum DoorState doorState) | ||
{ | ||
LOGPRINTLN_TRACE("Entered stringFromDoorState()"); | ||
|
||
switch (doorState) { | ||
case DOORSTATE_OPEN: | ||
return (char *)"open"; | ||
|
||
case DOORSTATE_CLOSED: | ||
return (char *)"closed"; | ||
|
||
case DOORSTATE_OPENING: | ||
return (char *)"opening"; | ||
|
||
case DOORSTATE_CLOSING: | ||
return (char *)"closing"; | ||
|
||
case DOORSTATE_STOPPED_OPENING: | ||
return (char *)"stopped-opening"; | ||
|
||
case DOORSTATE_STOPPED_CLOSING: | ||
return (char *)"stopped-closing"; | ||
|
||
case DOORSTATE_UNKNOWN: | ||
return (char *)"unknown"; | ||
|
||
default: | ||
return (char *)"unknown"; | ||
} | ||
} | ||
|
||
void GarageDoorController::_monitorInputs() | ||
{ | ||
LOGPRINTLN_TRACE("Entered _monitorInputs()"); | ||
|
||
uint32_t timeNow = millis(); | ||
static uint32_t lastCall = 0; | ||
|
||
if ((lastCall != 0) && (timeNow - lastCall) <= 500) { | ||
return; | ||
} | ||
|
||
lastCall = timeNow; | ||
|
||
// Check door sensor inputs | ||
LOGPRINTLN_VERBOSE("Reading door sensor debouncers"); | ||
this->SensorOpen = !(bool)this->_sensorOpenDebouncer->read(); | ||
this->SensorClosed = !(bool)this->_sensorClosedDebouncer->read(); | ||
|
||
if ((this->DoorTimeLastOperated == 0) || ((timeNow - this->DoorTimeLastOperated) >= DOOR_SENSOR_REACT_TIME)) { | ||
if (this->SensorOpen && !this->SensorClosed) { | ||
this->DoorState = DOORSTATE_OPEN; | ||
} else if (!this->SensorOpen && this->SensorClosed) { | ||
this->DoorState = DOORSTATE_CLOSED; | ||
} else if (this->SensorOpen && this->SensorClosed) { | ||
this->DoorState = DOORSTATE_UNKNOWN; | ||
} else if (!this->SensorOpen && !this->SensorClosed) { | ||
if ((this->DoorState != DOORSTATE_OPENING) && (this->DoorState != DOORSTATE_CLOSING) && (this->DoorState != DOORSTATE_STOPPED_OPENING) && (this->DoorState != DOORSTATE_STOPPED_CLOSING)) { | ||
if (this->DoorStateLastKnown == DOORSTATE_CLOSED) { | ||
this->DoorState = DOORSTATE_OPENING; | ||
} else if (this->DoorStateLastKnown == DOORSTATE_OPEN) { | ||
this->DoorState = DOORSTATE_CLOSING; | ||
} else { | ||
this->DoorState = DOORSTATE_UNKNOWN; | ||
} | ||
|
||
if ((this->DoorState == DOORSTATE_OPENING) || (this->DoorState == DOORSTATE_CLOSING)) { | ||
// Door must have been manually operated | ||
this->DoorTimeLastOperated = timeNow; | ||
} | ||
} | ||
} | ||
} | ||
|
||
if (this->DoorState != DOORSTATE_OPEN) { | ||
this->DoorTimeOpenSince = 0; | ||
} | ||
|
||
if ((this->DoorState == DOORSTATE_OPEN) || (this->DoorState == DOORSTATE_CLOSED)) { | ||
this->DoorTimeLastOperated = 0; | ||
this->DoorStateLastKnown = this->DoorState; | ||
|
||
if (this->DoorState == DOORSTATE_OPEN) { | ||
if (this->DoorTimeOpenSince == 0) { | ||
this->DoorTimeOpenSince = timeNow; | ||
} else if (DOOR_AUTO_CLOSE_TIME > 0 && (timeNow - this->DoorTimeOpenSince) >= DOOR_AUTO_CLOSE_TIME) { | ||
// Door was open, but should now be automatically closed | ||
operateDoor(false); | ||
} | ||
} | ||
|
||
} else if ((this->DoorState == DOORSTATE_OPENING) || (this->DoorState == DOORSTATE_CLOSING)) { | ||
if ((timeNow - this->DoorTimeLastOperated) >= DOOR_MAX_OPEN_CLOSE_TIME) { | ||
// Door was opening/closing, but has now exceeded max open/close time | ||
this->DoorTimeLastOperated = 0; | ||
|
||
if (this->DoorState == DOORSTATE_OPENING) { | ||
this->DoorState = DOORSTATE_STOPPED_OPENING; | ||
} else if (this->DoorState == DOORSTATE_CLOSING) { | ||
this->DoorState = DOORSTATE_STOPPED_CLOSING; | ||
} | ||
} | ||
} | ||
|
||
// Check light inputs, output if necessary | ||
LOGPRINTLN_VERBOSE("Reading light sensor debouncer"); | ||
this->LightInput = !(bool)this->_lightInputDebouncer->read(); | ||
this->LightState = (this->LightInput || this->LightRequested); | ||
this->switchLight(this->LightState); | ||
|
||
#ifdef LOG_LEVEL && LOG_LEVEL >= 3 | ||
char jsonStatus[256]; | ||
this->getJsonStatus(jsonStatus, sizeof(jsonStatus)); | ||
LOGPRINTLN_DEBUG(jsonStatus); | ||
#endif | ||
} | ||
|
||
void GarageDoorController::_operateDoor(uint8_t pin, uint8_t cycles) | ||
{ | ||
LOGPRINTLN_VERBOSE("Entered _operateDoor()"); | ||
|
||
for (uint8_t i = 0; i < cycles; i++) { | ||
if (i != 0) { | ||
delay(DOOR_OUTPUT_PULSE_DELAY_TIME); | ||
} | ||
|
||
digitalWrite(pin, HIGH); | ||
delay(DOOR_OUTPUT_PULSE_TIME); | ||
digitalWrite(pin, LOW); | ||
} | ||
|
||
this->DoorTimeLastOperated = millis(); | ||
} | ||
|
Oops, something went wrong.