added tasmota

This commit is contained in:
simonox 2023-02-26 17:08:33 +01:00
parent 07c74e3cae
commit d83af2787b
10 changed files with 36 additions and 1 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -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

View File

@ -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() {

BIN
tasmota/.DS_Store vendored Normal file

Binary file not shown.

BIN
tasmota/01-flash-1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

BIN
tasmota/02-flash-2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

BIN
tasmota/03-wifi.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

BIN
tasmota/04-web-ui.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 KiB

BIN
tasmota/06-overview.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB