From f5bc52ac3a305c07dba3746fa7b9fd5ea6febac2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Uribe=20Stengel?= Date: Mon, 22 Jun 2020 16:12:16 +0200 Subject: [PATCH] Create main project file --- Smart_Garden.ino | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Smart_Garden.ino diff --git a/Smart_Garden.ino b/Smart_Garden.ino new file mode 100644 index 0000000..568f35d --- /dev/null +++ b/Smart_Garden.ino @@ -0,0 +1,11 @@ +/* + Main header file for the SmartGarden project +*/ + +void setup() { + setupCapacitiveSoilMoistureSensor(); +} + +void loop() { + loopCapacitiveSoilMoistureSensor(); +}