Thermometer with Arduino MKR-1010 and Blynk.
A DHT11 sensor is used for this project.
- V1 (Temperature)
- V2 (Humidity)
- DHT Library.
- WiFiNINA Library.
- Blynk Library.
You need to have a Blynk account and connect the Arduino MKR 1010. After connecting the device you will receive:
- Template ID.
- Device name.
- Authentication token.
And we'll need them for the beginning of the code:
#define BLYNK_TEMPLATE_ID "YourTemplateID"
#define BLYNK_DEVICE_NAME "YourDeviceName"
#define BLYNK_AUTH_TOKEN "YourAuthToken"
Note: Connections vary according to the type of sensor being used.
MADE BY barbo186