1st README draft

This commit is contained in:
Flinner Yuu 2022-12-11 07:13:03 +03:00
parent d56dd8dce0
commit 38ad3accc7
Signed by: flinner
GPG Key ID: 95CE0DA7F0E58CA6
1 changed files with 22 additions and 0 deletions

22
README.md Normal file
View File

@ -0,0 +1,22 @@
# ESP32 capacitance
To connect to wifi, set:
```c
#define WIFI_SSID "SSID_NAME" // Network Name
#define WIFI_PASSWORD "PASSWORD" // Network Password
```
And the MQTT host
```c
#define MQTT_SERVER "mqtt.ammar.engineer"
#define MQTT_PORT 1883
```
## Compiling and Uploading
```sh
pio run -t upload && pio device monitor
```
# TODO