CrawlSpaceSensor: Difference between revisions
(Initial content) |
mNo edit summary |
||
Line 16: | Line 16: | ||
Measurement data is uploaded once an hour over WiFi to an MQTT server. | Measurement data is uploaded once an hour over WiFi to an MQTT server. | ||
Since there is likely no mains power easily available in a crawl space, | Since there is likely no mains power easily available in a crawl space, it is battery operated. | ||
== Design == | == Design == | ||
Line 30: | Line 30: | ||
=== Software === | === Software === | ||
Software tasks are: (estimated time) | Software tasks are: (estimated run-time) | ||
* wake up from deep sleep (1.0s) | * wake up from deep sleep (1.0s) | ||
* connect and authenticate to the WiFi (3.0s) | * connect and authenticate to the WiFi (3.0s) | ||
Line 40: | Line 40: | ||
Total about 10 seconds per measurement cycle. | Total about 10 seconds per measurement cycle. | ||
Initially, when no WiFi network is known, the sensor starts its own access point presenting a captive portal allowing a WiFi network to be selected. | |||
=== Battery Life === | === Battery Life === |
Revision as of 11:16, 22 April 2017
Project CrawlSpaceSensor | |
---|---|
File:Whyunoimage.png | |
Sensor inside crawl space | |
Status | Initializing |
Contact | bertrik |
Last Update | 2017-04-22 |
Introduction
This is a project idea for monitoring the crawl space under a house for water ingress.
This things monitors the crawl space with the following sensors:
- water level (in case it is flooded), using a VL53L0X lidar sensor
- humidity and temperature using a DHT11 or DHT22
Measurement data is uploaded once an hour over WiFi to an MQTT server.
Since there is likely no mains power easily available in a crawl space, it is battery operated.
Design
The plan is to use an ESP8266 to read the sensors, connect to the house WiFi and upload the measurement data once an hour. When not measuring, the ESP8266 is in deep-sleep mode (something like 80 uA current). Time-of-day is retrieved using (S)NTP.
Hardware
- ESP8266 in a Wemos D1 mini board, because they're so easy to use
- LiFePO4 battery, because they have about the right voltage for direct drive and are safe to use
- VL53L0X LIDAR module to accurately measure the water level
- DHT11 or DHT22 to measure humidity and temperature
Software
Software tasks are: (estimated run-time)
- wake up from deep sleep (1.0s)
- connect and authenticate to the WiFi (3.0s)
- perform an SNTP request to get the current date/time (1.0s)
- perform a distance measurement using the LIDAR (3.0s)
- perform temperature/humidity measurement (1.0s)
- publish measurements to MQTT (1.0s)
- calculate sleep time until next wakeup and enter deep-sleep (0.0s)
Total about 10 seconds per measurement cycle.
Initially, when no WiFi network is known, the sensor starts its own access point presenting a captive portal allowing a WiFi network to be selected.
Battery Life
A typical LiFePO4 "AA" type battery has 700 mAh capacity.
When awake, current consumption is assumed to take 100 mA on average for 10 seconds. So each measurement takes about 0.28 mAh, allowing about 2500 measurements in total. Doing one measurement per hour, one LiFePO4 battery charge should last for about 100 days.
Deep-sleep current is ignored in this calculation.