Skip to content

ndouglas/ndh_humidifier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nug Doug's Home Humidifier

My little ESP8266-based humidifier.

It has an attached DHT22 temperature/humidity sensor and a 5V relay.

The principal variable is a struct, settings, containing the following:

  • humidityLowerBound (float) - Humidity level at which the relay should be turned ON.
  • humidityUpperBound (float) - Humidity level at which the relay should be turned OFF.

It has the following HTTP API.

  • GET / - JSON output of all current data.
  • GET /humidity - humidity (float)
  • GET /temperature - temperature (Fahrenheit) (float)
  • GET /settings/humidityLowerBound - humidity lower bound (float)
  • GET /settings/humidityUpperBound - humidity upper bound (float)
  • POST /settings/humidityLowerBound - set humidity lower bound (float), using the value parameter
  • POST /settings/humidityUpperBound - set humidity upper bound (float), using the value parameter

It allows OTA updates.

About

My little ESP8266-based humidifier.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages