vitzaoral / ESP8266_BeeHive_WiFi

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bee hive temperature/humidity and security monitoring with ESP8266 (Wemos D1 mini)

Data are sent to the Blynk.

To build a project, you need to download all the necessary libraries and create the settings.cpp file in the src folder:

// Project settings
struct Settings
{
    const char *blynkAuth = "XXX";
    const char *version = "1.0.0";

    const char *wifiSSID = "WIFI";
    const char *wifiPassword = "123";

    const char *firmwareVersionUrl = "http://iot.example.com/beehive/version.txt";
    const char *firmwareBinUrl = "http://iot.example.com/beehive/firmware.bin";
};

Features

  • measuring temperature and humidity with SHT31 sensor
  • Sends push notification, when alarm is triggered (magnetic sensors)

Currents list:

Schema:

Schema

About


Languages

Language:C++ 100.0%