From b5c3a495130d8f68e345b37d4d6fb555118d6ebc Mon Sep 17 00:00:00 2001 From: Dirk Jahnke Date: Fri, 25 Dec 2020 15:52:54 +0100 Subject: [PATCH] Initial commit --- .gitignore | 5 + .vscode/extensions.json | 7 + README.md | 13 ++ include/README | 39 +++++ lib/README | 46 ++++++ platformio.ini | 18 +++ src/main.cpp | 318 ++++++++++++++++++++++++++++++++++++++++ test/README | 11 ++ 8 files changed, 457 insertions(+) create mode 100644 .gitignore create mode 100644 .vscode/extensions.json create mode 100644 README.md create mode 100644 include/README create mode 100644 lib/README create mode 100644 platformio.ini create mode 100644 src/main.cpp create mode 100644 test/README diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..89cc49c --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..e80666b --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,7 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ] +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..3d99f49 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# DoorBell-MQTT-Gateway + +Based on + +- Arduino Uno +- Ethernet interface + +Watchout for GPIO changes as triggers for + +- door bell input +- post box observer (post entry) +- post box observer (takeout posts) +- ... diff --git a/include/README b/include/README new file mode 100644 index 0000000..194dcd4 --- /dev/null +++ b/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/lib/README b/lib/README new file mode 100644 index 0000000..6debab1 --- /dev/null +++ b/lib/README @@ -0,0 +1,46 @@ + +This directory is intended for project specific (private) libraries. +PlatformIO will compile them to static libraries and link into executable file. + +The source code of each library should be placed in a an own separate directory +("lib/your_library_name/[here are source files]"). + +For example, see a structure of the following two libraries `Foo` and `Bar`: + +|--lib +| | +| |--Bar +| | |--docs +| | |--examples +| | |--src +| | |- Bar.c +| | |- Bar.h +| | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html +| | +| |--Foo +| | |- Foo.c +| | |- Foo.h +| | +| |- README --> THIS FILE +| +|- platformio.ini +|--src + |- main.c + +and a contents of `src/main.c`: +``` +#include +#include + +int main (void) +{ + ... +} + +``` + +PlatformIO Library Dependency Finder will find automatically dependent +libraries scanning project source files. + +More information about PlatformIO Library Dependency Finder +- https://docs.platformio.org/page/librarymanager/ldf.html diff --git a/platformio.ini b/platformio.ini new file mode 100644 index 0000000..e2bdedb --- /dev/null +++ b/platformio.ini @@ -0,0 +1,18 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:uno] +platform = atmelavr +board = uno +framework = arduino +lib_deps = + bblanchon/ArduinoJson@^6.17.2 + knolleary/PubSubClient@^2.8 + paulstoffregen/Ethernet@0.0.0-alpha+sha.9f41e8231b diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..878afa5 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,318 @@ +#include +#include +#include +#include +#include +#include + +// Update these with values suitable for your network. +byte mac[] = { 0xDE, 0xED, 0xBA, 0xFE, 0xFE, 0xEA }; +IPAddress ip(192, 168, 89, 205); +IPAddress mqttServerIP(192, 168, 89, 95); +const char *mqttUser = "default"; +const char *mqttPassword = "12345678"; + +const char *doorBellTopic = "doorBell"; +const char *postboxFlapTopic = "postboxFlap"; +const char *postboxDoorTopic = "postboxDoor"; +const char *doorBellTriggerSoundTopic = "doorBellTrigger"; +const char *postboxLightTopic = "postboxLight"; + +EthernetClient ethClient; +EthernetServer server(80); +PubSubClient mqttClient(ethClient); +#define DOOR_BELL_BUTTON_PIN 7 +#define POSTBOX_FLAP_PIN 5 +#define POSTBOX_DOOR_PIN 3 +// Output pins +#define LED_PIN 13 +#define DOOR_BELL_BUZZER_PIN 6 +#define POSTBOX_LIGHT_PIN 4 + +struct { + const uint8_t pin; + const unsigned long quietAfterTriggerFor_ms; + unsigned long lastTrigger_ts; + bool isTriggered; + const char *topic; +} myInputs[] = { + { DOOR_BELL_BUTTON_PIN, 500, 0 , false, doorBellTopic }, + { POSTBOX_FLAP_PIN, 1000, 0, false, postboxFlapTopic }, + { POSTBOX_DOOR_PIN, 1000, 0, false, postboxDoorTopic } +}; +#define NUM_INPUTS (sizeof(myInputs) / sizeof(myInputs[0])) +int ledState = LOW; + +struct { + const uint8_t pin; + const unsigned long triggerTime_ms; + bool isTriggered; + unsigned long lastTrigger_ts; + const char *listenTopic; // can be triggered by mqtt message as well +} myOutputs[] = { + { DOOR_BELL_BUZZER_PIN, 500, false, 0, doorBellTriggerSoundTopic}, + { POSTBOX_LIGHT_PIN, 30000, false, 0, postboxLightTopic} +}; +#define NUM_OUTPUTS (sizeof(myOutputs) / sizeof(myOutputs[0])) + + +void switchOutputOn(unsigned int outputNumber) { + Serial.print(F("Switch output on: ")); + Serial.print(outputNumber); + Serial.print(F(" (pin ")); + Serial.print(myOutputs[outputNumber].pin); + Serial.print(F(") topic ")); + Serial.println(myOutputs[outputNumber].listenTopic); + digitalWrite(myOutputs[outputNumber].pin, LOW); + myOutputs[outputNumber].isTriggered = true; + myOutputs[outputNumber].lastTrigger_ts = millis(); +} + +void switchOutputOff(unsigned int outputNumber) { + Serial.print(F("Switch output off: ")); + Serial.print(outputNumber); + Serial.print(F(" (pin ")); + Serial.print(myOutputs[outputNumber].pin); + Serial.print(F(") topic ")); + Serial.println(myOutputs[outputNumber].listenTopic); + digitalWrite(myOutputs[outputNumber].pin, HIGH); + myOutputs[outputNumber].isTriggered = false; +} + +void checkOutputAutoOff() { + static bool headerDone = false; + for (unsigned int outputNumber=0; outputNumber myInputs[i].quietAfterTriggerFor_ms) { + if (!digitalRead(myInputs[i].pin)) { + // input is triggered, compare with existing state + if (myInputs[i].isTriggered) { + // was triggered as well, could send a retrigger now + Serial.print(F("Re-Trigger pin ")); Serial.println(myInputs[i].pin); + sendMqttMessage(myInputs[i].topic, "re-trigger"); + needToToggleLed = true; + } else { + // handle trigger now + myInputs[i].isTriggered = true; + // send Trigger + Serial.print(F("Trigger pin ")); Serial.println(myInputs[i].pin); + sendMqttMessage(myInputs[i].topic, "trigger"); + needToToggleLed = true; + } + myInputs[i].lastTrigger_ts = millis(); + } else { + // no trigger seen, if it was before, send a "released" message + if (myInputs[i].isTriggered) { + myInputs[i].isTriggered = false; + myInputs[i].lastTrigger_ts = millis(); + Serial.print(F("Released pin ")); Serial.println(myInputs[i].pin); + sendMqttMessage(myInputs[i].topic, "release"); + needToToggleLed = true; + } + } + } + } + + // if a LED toggle has been flagged : + if ( needToToggleLed ) { + // Toggle LED state : + ledState = !ledState; + digitalWrite(LED_PIN, ledState); + } + +} + +void checkWebRequest() { + // Wait for an incomming connection + EthernetClient client = server.available(); + + // Do we have a client? + if (!client) return; + + Serial.println(F("New client on web ingress")); + + // Read the request (we ignore the content in this example) + while (client.available()) client.read(); + + // Allocate a temporary JsonDocument + // Use arduinojson.org/v6/assistant to compute the capacity. + StaticJsonDocument<500> doc; + + for (unsigned int pin = 0; pin < NUM_INPUTS; pin++) { + doc[myInputs[pin].topic] = myInputs[pin].isTriggered ? "triggered" : "released"; + } + + // Create the "digital" array + JsonArray digitalValues = doc.createNestedArray("digitalPin"); + for (unsigned int pin = 0; pin < 14; pin++) { + // Read the digital input + int value = digitalRead(pin); + + // Add the value at the end of the array + digitalValues.add(value); + } + + Serial.print(F("Sending: ")); + serializeJson(doc, Serial); + Serial.println(); + + // Write response headers + client.println(F("HTTP/1.0 200 OK")); + client.println(F("Content-Type: application/json")); + client.println(F("Connection: close")); + client.print(F("Content-Length: ")); + // client.println(measureJsonPretty(doc)); + client.println(measureJson(doc)); + client.println(); + + // Write JSON document + //serializeJsonPretty(doc, client); + serializeJson(doc, client); + + // Disconnect + client.stop(); +} + +void loop() { + // Client + if (!mqttClient.connected()) { + reconnect(); + } + mqttClient.loop(); + + checkInputSignals(); + + checkWebRequest(); + + checkOutputAutoOff(); + +} + diff --git a/test/README b/test/README new file mode 100644 index 0000000..b94d089 --- /dev/null +++ b/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Unit Testing and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/page/plus/unit-testing.html