Skip to content

Using the Firebeetle ESP32-E as battery powered sensor (SKU:DFR0654-F)

License

Notifications You must be signed in to change notification settings

Torxgewinde/Firebeetle-2-ESP32-E

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Firebeetle-2-ESP32-E motion sensor

This project is about using the Firebeetle ESP32-E (SKU:DFR0654-F) as battery powered motion sensor

Description

This WiFi motion sensor consists of:

  • LiPo-Battery (2000mAh LiPo battery with 3.7V nominal voltage and protection circuits, ~7€)
  • PIR sensor to detect motion (Panasonic Series WL EKMB1303111K, Datasheet, 6µA current consumption, sometimes for ~9€)
  • ESP32 development board with LiPo charging circuit (Firebeetle-2-ESP32-E because it can really deepsleep with low deepsleep current, ~11€)

Mainly the ESP32 saves power by entering DeepSleep state. In this state it draws about 23 µA if the "LowPower-Pad" to the RGB-color-LED is cut. Two events cause the ESP32 to wake up:

  • either a timer, or if
  • the PIR sensor changes state.

The PIR state is transmitted via WiFi/MQTT and can be used in homeautomation software for further actions.

Powersaving

Cache WiFi channel and BSSID/MAC

To bring the latency and energy-consumption down, Wifi channel and BSSID are cached in the RTC-RAM-section of the ESP. These cached values are still available even if the ESP32 wakes up from deep sleep. With good signal, the ESP32 is active for 450 to 1200 ms if the cached values still work. If the cached values do not work, the ESP32 performs a scan of all channels, authenticates and associates to the strongest Accesspoint found. This consumes a lot more time and thus energy, because the ESP32 needs to check all channels and see if it catches beacons of matching Accesspoints. It depends a lot on the accesspoints if the connections is quick and energy conserving or slow.

PIR sensor

The PIR sensor EKMB1303111K is a 3.3V type sensor with low power consumption and a reasonable price (Panasonic PaPIR).

Battery protection

Battery itself

LiPo-batteries need protection against overvoltage, short circuit and undervoltage/deep-discharge. Without these safety measures, they do not last long and can swell or even burn. The LiPo should have the proper connectors (PH2.0) with the correct polarity and sourced from a trustworthy supplier. The LiPo-battery as used has a DW01 protection IC. It shuts-down below 2.4V and above 4.25V.

Deep-discharge protection

Besides those safety measures build into the LiPo-battery, the sketch measures the battery voltage. To obtain accurate voltages, the sketch uses factory calibration values. Espressif either sets two-point, one-point or no calibration value to the EFUSE-area. If the voltage is below 3.2V, the sketch stops its regular work and enters deep-sleep for ten minute intervals. If put on a charger the device automatically enters the regular operation mode again within those ~10 minutes. If the battery drops to 3.1 to 3.0 V the sleep interval is longer with 60 minutes. If the voltage drops below 3.0V the device enters a hibernate-mode and a manual push of the reset-button is required. The voltage drops quite steeply below 3.3V and not many Ampere-hours are wasted with these levels.

Tests

To measure the battery lifetime a device is placed in a busy room. Some figures:

2021-11-24_08:44:35 Firebeetle2 off
2021-11-24_08:44:35 Firebeetle2 BatteryVoltage: 4.206
2021-11-24_08:44:35 Firebeetle2 BatteryRuntime: 52811.404255
2021-11-24_08:44:35 Firebeetle2 Restarts: 52
2021-11-24_08:44:35 Firebeetle2 ActiveTime: 42923
...
2022-05-23_18:16:49 Firebeetle2 on
2022-05-23_18:16:49 Firebeetle2 BatteryVoltage: 3.932
2022-05-23_18:16:49 Firebeetle2 BatteryRuntime: 15756413.517392
2022-05-23_18:16:49 Firebeetle2 Restarts: 28330
2022-05-23_18:16:49 Firebeetle2 ActiveTime: 14144317

As a plot it looks like this: Green line is number of activations, green dots are on/off states, red is battery voltage in %