diff --git a/.DS_Store b/.DS_Store index 6d3547e..1a86dee 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/README.md b/README.md index e59309f..3fd1154 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,41 @@ const char* ssid = "MeinKabelWifi"; const char* password = "letMeIn123"; ``` +## Tasmota + +[Tasmota](https://tasmota.github.io/docs/) is an alternative Firmware for ESP8266. It's easy to use as it has a graphical interface. + +You can flash Tasmota right from the browser using the [Tasmota Web Installer](https://tasmota.github.io/). + +![Flash it](./tasmota/01-flash-1.png) + +You have to connect your device with a USB cable and select the right port. Exisisting firmware will be delete. + +![Erase everything](./tasmota/02-flash-2.png) + +After Tasmota has been flashed to your ESP, you can already set up your wifi. + +![Set up Wifi](./tasmota/03-wifi.png) + +AFter your device is connected to Wifi, you can switch over to the web UI of your device. Yes, your device now runs an embedded web server. There you can configure your device. + +![Embedded web server](./tasmota/04-web-ui.png) + +### Configure + +Using this Web UI you can configure your device: `Configure -> Configure Module` + +We have a DHT11 connected to D1 and an analogue measurement on A0. + +![Basic configuration](./tasmota/05-configuration.png) + + +After configuring it this way, we can see you data in the web UI. + +![Flash it](./tasmota/06-overview.png) + + + ## ESPHome ### CLI diff --git a/serial-out/serial-out.ino b/serial-out/serial-out.ino index 01bb28e..cb69e62 100644 --- a/serial-out/serial-out.ino +++ b/serial-out/serial-out.ino @@ -5,7 +5,7 @@ DHTesp dht; void setup() { Serial.begin(115200); // use this baud rate in serial monitor to see stuff - dht.setup(D0, DHTesp::DHT11); // Connect DHT sensor to D0 + dht.setup(D1, DHTesp::DHT11); // Connect DHT sensor to D1 } void loop() { diff --git a/tasmota/.DS_Store b/tasmota/.DS_Store new file mode 100644 index 0000000..eaa8956 Binary files /dev/null and b/tasmota/.DS_Store differ diff --git a/tasmota/01-flash-1.png b/tasmota/01-flash-1.png new file mode 100644 index 0000000..2335d85 Binary files /dev/null and b/tasmota/01-flash-1.png differ diff --git a/tasmota/02-flash-2.png b/tasmota/02-flash-2.png new file mode 100644 index 0000000..e96dc3b Binary files /dev/null and b/tasmota/02-flash-2.png differ diff --git a/tasmota/03-wifi.png b/tasmota/03-wifi.png new file mode 100644 index 0000000..ae7f1b0 Binary files /dev/null and b/tasmota/03-wifi.png differ diff --git a/tasmota/04-web-ui.png b/tasmota/04-web-ui.png new file mode 100644 index 0000000..fde4987 Binary files /dev/null and b/tasmota/04-web-ui.png differ diff --git a/tasmota/05-configuration.png b/tasmota/05-configuration.png new file mode 100644 index 0000000..f291b6b Binary files /dev/null and b/tasmota/05-configuration.png differ diff --git a/tasmota/06-overview.png b/tasmota/06-overview.png new file mode 100644 index 0000000..dfd83a6 Binary files /dev/null and b/tasmota/06-overview.png differ