smart-energy-monitor/software/firmware/energy-montior
2023-02-19 16:40:44 +01:00
..
docs/images added documentation for my first trial runs 2023-02-19 16:40:44 +01:00
energy-monitor added documentation for my first trial runs 2023-02-19 16:40:44 +01:00
README.md added documentation for my first trial runs 2023-02-19 16:40:44 +01:00

Energy Monitor

Our energy monitor is based on the openenergymonitor.org project (Licence GNU GPL V3). It uses our HelTec Wireless Stick. Power Measurement is done by a SCT013 clamp (100A:50mA).

Used materials

  • ESP32 module (e.g. Heltec Wireless Stick)
  • 3 x SCT-013-100 (100 A), see: http://openenergymonitor.org/emon/node/156
  • 6 x 10 kOhm Resistors 1/4 W
  • 1 x 22 Ohm Resistor 1/4 W (TODO: I am using a 47 Ohm Resistor to be replaced)
  • 3 x 10 uF Elko 10 V
  • 3 x 3,5 mm audio jack connector

PinOut

PinOut

We use A1, A2 and A3 because the are free (most ADCs are already used on the HelTec Board)

Sensors

The SCT-013 sensors are small current transformers (SCT). They have a ferromagnetic core that can be opened and in which we can enclose our conductor. This conductor is the primary winding and the secondary winding is fixed in the sensor and can have 2000 turns. This gives us a ratio of 1:2000 as an example.

When AC current flows through the conductor, a magnetic flux is generated in the ferromagnetic core, which in turn generates an electric current in the secondary winding.

I could not meassure "small" power consumptions (like a LED lamp or a light stripe, as the magnetix flux in the ferromagnet core seems to be too small).

clamp on wire

I was able to measure high loads (like a heater the can be switched between 1 kW and 2 kW).

heater

Make sure the clamp is always positioned towards the consumer, otherwise it does not work. There is a small arrow on the case.

point the clamp

Breadboard

Let's start with a simple breadboard layout.

Breadboard Photo of breadboard

To understand this, have a look at this plan:

Plan

R1 & R2 are a voltage divider that provides the 1.65 V source. We use 10 kΩ for mains powered monitors. If we want to run on batteries, we have to choose differnt ones (like 470 kΩ resistors to keep the power consumption to a minimum).

Capacitor C1 has a low reactance - a few hundred ohms - and provides a path for the alternating current to bypass the resistor. A value of 10 μF is suitable.

R3 is the burden resistor. Ideal burden would be 19 Ω. As this is not a common value, you could choose 18 Ω or 22 Ω (I am still using a 47 Ω restistor, that has to be replaced).

See the Fritzing file for details.

Code

Print to serial out

Start with a simple code that just prints the values. The code is quite simple, as we can use the existing EmonLib libary V1.1.0 by OpenEnergyMonitor.

The only interesting part is this line:

  emon1.current(current1Pin, 8);  // Pin and Calibration

The calibration value "8" was done with a Fluke multimeter (and maybe a not so ideal burden resistor).

The code just prints the current power consumption to serial out:

16:28:18.915 -> 2853.16 Watt  -  12.41 Ampere
16:28:19.998 -> 2854.63 Watt  -  12.41 Ampere
16:28:21.119 -> 2850.93 Watt  -  12.40 Ampere
16:28:22.207 -> 1702.19 Watt  -  7.40 Ampere
16:28:23.289 -> 400.62 Watt  -  1.74 Ampere
16:28:24.367 -> 94.42 Watt  -  0.41 Ampere

Post to MQTT

// TODO: Continue here