From bc99f010dffdff36b04dcbca59cb8b384b8b603c Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 22 Jan 2021 11:53:02 +0000 Subject: [PATCH] Delete config.h --- include/config.h | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 include/config.h diff --git a/include/config.h b/include/config.h deleted file mode 100644 index c4997a4..0000000 --- a/include/config.h +++ /dev/null @@ -1,21 +0,0 @@ -// Type of RGB LED, adjusts the brightness calculations. -#define LED_TYPE 0 // 0 = Anode, 1 = Cathode - -// GPIO pins for each colour -#define RED_LED_PIN 4 -#define GREEN_LED_PIN 0 -#define BLUE_LED_PIN 2 - -// Enables the webserver -#define WEBSERVER - -// Enable MQTT connection (not complete) -//#define MQTT - -// WIFI connection details -#define WIFI_SSID "ssid" -#define WIFI_PASS "s3cur3" - -// MQTT connection details -#define MQTT_SERVER "mqtt.local" -#define MQTT_PORT 1883