mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-18 11:15:36 +01:00
49 lines
2.1 KiB
ReStructuredText
49 lines
2.1 KiB
ReStructuredText
|
Non-Invasive Power Meter
|
||
|
========================
|
||
|
|
||
|
So an essential part of making your home smart is knowing how much power it uses over
|
||
|
the day. Tracking this can be difficult, often you need to install a completely new
|
||
|
power meter which can often cost a bunch of money. However, quite a few power meters
|
||
|
have a red LED on the front that blinks every time that one Wh has been used.
|
||
|
|
||
|
The simple idea therefore is: Why don't we just abuse that functionality to make the power-meter
|
||
|
IoT enabled? We just have to hook up a simple photoresistor in front of that aforementioned
|
||
|
LED and track the amount of pulses we receive. Then using esphomelib we can instantly have
|
||
|
the power meter show up in Home Assistant 🎉
|
||
|
|
||
|
.. note::
|
||
|
|
||
|
This guide currently only works with the ESP32, and even if it is ported back to the ESP8266
|
||
|
at some point, the ESP32 will still achieve a much higher accuracy because it has a
|
||
|
hardware-based pulse counter.
|
||
|
|
||
|
Hooking it all up is quite easy: Just buy a suitable photoresistor (make sure the wave length
|
||
|
approximately matches the one from your power meter). Then connect it using a simple variable
|
||
|
resistor divider (see `this article <https://blog.udemy.com/arduino-ldr/>`__ for inspiration).
|
||
|
And... that should already be it :)
|
||
|
|
||
|
.. figure:: images/power_meter-header.jpg
|
||
|
:align: center
|
||
|
:width: 80.0%
|
||
|
|
||
|
For esphomelib, you can then use the
|
||
|
:doc:`pulse counter sensor </esphomeyaml/components/sensor/pulse_counter>` using below configuration:
|
||
|
|
||
|
.. code:: yaml
|
||
|
|
||
|
sensor:
|
||
|
- platform: pulse_counter
|
||
|
pin: GPIO12
|
||
|
unit_of_measurement: 'kW'
|
||
|
name: 'Power Meter'
|
||
|
filters:
|
||
|
- multiply: 0.06
|
||
|
|
||
|
Adjust ``GPIO12`` to match your set up of course. The output from the pulse counter sensor is in
|
||
|
``pulses/min`` and we also know that 1000 pulses from the LED should equal 1kWh of power usage.
|
||
|
Thus, rearranging the expression yields a proportional factor of ``0.06`` from ``pulses/min`` to
|
||
|
``kW``.
|
||
|
|
||
|
And if a technician shows up and he looks confused about what the heck you have done to your
|
||
|
power meter, tell them about esphomelib 😉
|