From 05fbbe90eae80403cd8aaaa61e9040e53271f62f Mon Sep 17 00:00:00 2001 From: Zwirbel Date: Fri, 8 Oct 2021 18:47:25 +0200 Subject: [PATCH] fix: neopixel version, add makefile --- Makefile | 9 +++++++++ data/config/wifi.json | 14 +++++++------- platformio.ini | 2 +- 3 files changed, 17 insertions(+), 8 deletions(-) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a6b0aa1 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +init: + curl -fsSL https://raw.githubusercontent.com/platformio/platformio-core/master/scripts/99-platformio-udev.rules | sudo tee /etc/udev/rules.d/99-platformio-udev.rules + sudo udevadm control --reload-rules + sudo udevadm trigger +build: + pio run -e build + +flash: + pio run -e build -t upload \ No newline at end of file diff --git a/data/config/wifi.json b/data/config/wifi.json index 8aa1588..a0aefa9 100644 --- a/data/config/wifi.json +++ b/data/config/wifi.json @@ -1,9 +1,9 @@ { "stationMode": 1, - "hostname": "bar-light", - "apSSID": "bar-light", - "apPassword": "th3r31sn0sp00n", - "connectTimeout": 5000, - "stationSSID": "UPC7823296", - "stationPassword": "rthYx4Vnfeza" -}u \ No newline at end of file + "hostname": "illucat", + "apSSID": "illucat", + "apPassword": "gabageclot", + "connectTimeout": 15000, + "stationSSID": "name-vo-dim-home-wifi", + "stationPassword": "dis-home-wifi-passwort" +} \ No newline at end of file diff --git a/platformio.ini b/platformio.ini index d62ae60..7905bcc 100644 --- a/platformio.ini +++ b/platformio.ini @@ -22,7 +22,7 @@ lib_deps = TaskScheduler SPIFFS ArduinoJson@5.13.4 - Adafruit NeoPixel + Adafruit NeoPixel@1.8.0 ESPAsyncTCP ESP8266mDNS ESP Async WebServer