From d5bdd4305ce28a56dff0b495624787eaa3a8bbaa Mon Sep 17 00:00:00 2001 From: Ronald Schaten Date: Fri, 22 Apr 2016 22:45:45 +0200 Subject: [PATCH] tell where the libraries are from --- things/DeviceDht.h | 2 +- things/DeviceIrRx.h | 2 +- things/DeviceIrTx.h | 2 +- things/things.ino | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/things/DeviceDht.h b/things/DeviceDht.h index 1d09e3b..bfd795f 100644 --- a/things/DeviceDht.h +++ b/things/DeviceDht.h @@ -2,7 +2,7 @@ #include "Device.h" #include -#include // https://github.com/adafruit/DHT-sensor-library +#include // https://github.com/adafruit/DHT-sensor-library class DeviceDht : public Device { public: diff --git a/things/DeviceIrRx.h b/things/DeviceIrRx.h index 93597be..4f4e179 100644 --- a/things/DeviceIrRx.h +++ b/things/DeviceIrRx.h @@ -2,7 +2,7 @@ #include "Device.h" #include -#include +#include // https://github.com/markszabo/IRremoteESP8266 class DeviceIrRx : public Device { public: diff --git a/things/DeviceIrTx.h b/things/DeviceIrTx.h index e23a830..5f1eec7 100644 --- a/things/DeviceIrTx.h +++ b/things/DeviceIrTx.h @@ -2,7 +2,7 @@ #include "Device.h" #include -#include +#include // https://github.com/markszabo/IRremoteESP8266 class DeviceIrTx : public Device { public: diff --git a/things/things.ino b/things/things.ino index 85c8b1d..3e384cd 100644 --- a/things/things.ino +++ b/things/things.ino @@ -1,4 +1,4 @@ -#include // https://github.com/marvinroger/homie-esp8266 +#include // https://github.com/marvinroger/homie-esp8266 #include "DeviceLed.h" #include "DeviceLdr.h"