EmonLib icon indicating copy to clipboard operation
EmonLib copied to clipboard

Electricity monitoring library - install in Arduino IDE's libraries folder then restart the IDE

Results 35 EmonLib issues
Sort by recently updated
recently updated
newest added

I am using Arduino mega, acs current sensor, step down transformer with bias (Only positive voltage cycle.) RMS value of current and voltage is accurate, apparent power also correct. Real...

question

I've a scenario where I'm using I2C interrupt and Emonlib together. I2C ISR contains several `analogReads` and emonlib measurement is running in `loop()`. I've observed that values from other `analogReads`...

enhancement

I understood that precision is issue as CT produces very small voltages. Most of arduinos have ability to set ADC to use 1.1V internal reference instead of 5V internal reference....

enhancement

Sorry for my dumb questions, but I am a NOOB in this and in need of reporting watts in two directions. Can I use a: NodeMCU v2 - Lua Based...

question

I believe it comes from line 232 of Emonlib.cpp not being inside the "if" that uses it.. I get this error for both my own program and the example program...

testing required

To resolve compile error for unused variable.

Arduino.h / WProgram.h already `#include`d identically by EmonLib.h

I have a problem measuring the Amps and kWhs for a few devices. The lib is so precise; nevertheless, after a while. In the beginning, I received a very high...

Some code that you may want to change to make it work (I have ESP32): In EmonLib.h: ``` #if defined(__arm__) #define ADC_BITS 12 #else #define ADC_BITS 10 #endif ``` Just...