Measuring Pipe's capacitance to track the quality of the pipe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
343 B

# 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