diff --git a/README.md b/README.md new file mode 100644 index 0000000..eeb0d31 --- /dev/null +++ b/README.md @@ -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