Sends temperature, humidity, altitude, pressure, dew point, and wifi signal strength to Thingspeak. Thingspeak is a website that will read the post data sent to them and provide graphs, it makes an easy way to test out esp communication and if you don't want to spend your own time coding up something you can just use their stuff.
Sends temperature, humidity, altitude, pressure, dew point, and wifi signal strength through a POST to a server. The hostname of the esp8266 is sent also so you can read from multiple sensors. Also uses the esp deepsleep function which requires wiring the reset pin to gpio 16.
See sensor.php for a receiving script example that you can place on your webserver.
Sends temperature, humidity, altitude, pressure, dew point, and wifi signal strength through a POST to a server. The hostname of the esp8266 is sent so you can read from multiple sensors. Also uses the esp deepsleep function which requires wiring the reset pin to gpio 16. sensor.php file reads the post and inserts the data into an Mysql database. Environment.php displays the sensor graphs (under construction).
- Bosch BME280 or BMP280 with i2c connection
- esp8266 module for example
- Arduino IDE or similar that can load and send .ino files to the esp8266
- The library ESP8266WiFi to use arduino IDE to program esp8266. Follow install there first
- The library BME280I2C found in the arduino package manager