From 3482630ed8c925bf96d66f9608c5523c6d23b5ea Mon Sep 17 00:00:00 2001 From: structix Date: Wed, 23 Aug 2017 21:02:28 +0200 Subject: [PATCH] New Structure --- ESP8266/sensornode/sensornode.ino | 9 +++++++++ configreader.c => RaspberryPi/configreader.c | 0 configreader.h => RaspberryPi/configreader.h | 0 dht22.c => RaspberryPi/dht22.c | 0 dht22.h => RaspberryPi/dht22.h | 0 main.c => RaspberryPi/main.c | 0 makefile => RaspberryPi/makefile | 0 sendmysql.c => RaspberryPi/sendmysql.c | 0 sendmysql.h => RaspberryPi/sendmysql.h | 0 settings.cfg => RaspberryPi/settings.cfg | 0 10 files changed, 9 insertions(+) create mode 100644 ESP8266/sensornode/sensornode.ino rename configreader.c => RaspberryPi/configreader.c (100%) rename configreader.h => RaspberryPi/configreader.h (100%) rename dht22.c => RaspberryPi/dht22.c (100%) rename dht22.h => RaspberryPi/dht22.h (100%) rename main.c => RaspberryPi/main.c (100%) rename makefile => RaspberryPi/makefile (100%) rename sendmysql.c => RaspberryPi/sendmysql.c (100%) rename sendmysql.h => RaspberryPi/sendmysql.h (100%) rename settings.cfg => RaspberryPi/settings.cfg (100%) diff --git a/ESP8266/sensornode/sensornode.ino b/ESP8266/sensornode/sensornode.ino new file mode 100644 index 0000000..95c2b6e --- /dev/null +++ b/ESP8266/sensornode/sensornode.ino @@ -0,0 +1,9 @@ +void setup() { + // put your setup code here, to run once: + +} + +void loop() { + // put your main code here, to run repeatedly: + +} diff --git a/configreader.c b/RaspberryPi/configreader.c similarity index 100% rename from configreader.c rename to RaspberryPi/configreader.c diff --git a/configreader.h b/RaspberryPi/configreader.h similarity index 100% rename from configreader.h rename to RaspberryPi/configreader.h diff --git a/dht22.c b/RaspberryPi/dht22.c similarity index 100% rename from dht22.c rename to RaspberryPi/dht22.c diff --git a/dht22.h b/RaspberryPi/dht22.h similarity index 100% rename from dht22.h rename to RaspberryPi/dht22.h diff --git a/main.c b/RaspberryPi/main.c similarity index 100% rename from main.c rename to RaspberryPi/main.c diff --git a/makefile b/RaspberryPi/makefile similarity index 100% rename from makefile rename to RaspberryPi/makefile diff --git a/sendmysql.c b/RaspberryPi/sendmysql.c similarity index 100% rename from sendmysql.c rename to RaspberryPi/sendmysql.c diff --git a/sendmysql.h b/RaspberryPi/sendmysql.h similarity index 100% rename from sendmysql.h rename to RaspberryPi/sendmysql.h diff --git a/settings.cfg b/RaspberryPi/settings.cfg similarity index 100% rename from settings.cfg rename to RaspberryPi/settings.cfg