GY-63_MS5611/libraries/ACS712/readme.md

548 lines
22 KiB
Markdown
Raw Normal View History

2021-01-29 06:31:58 -05:00
[![Arduino CI](https://github.com/RobTillaart/ACS712/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
2021-10-16 05:40:09 -04:00
[![Arduino-lint](https://github.com/RobTillaart/ACS712/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/ACS712/actions/workflows/arduino-lint.yml)
[![JSON check](https://github.com/RobTillaart/ACS712/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/ACS712/actions/workflows/jsoncheck.yml)
2023-09-20 13:55:34 -04:00
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/ACS712.svg)](https://github.com/RobTillaart/ACS712/issues)
2021-01-29 06:31:58 -05:00
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/ACS712/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/RobTillaart/ACS712.svg?maxAge=3600)](https://github.com/RobTillaart/ACS712/releases)
2023-09-20 13:55:34 -04:00
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/ACS712.svg)](https://registry.platformio.org/libraries/robtillaart/ACS712)
2021-01-29 06:31:58 -05:00
2021-10-16 05:40:09 -04:00
2020-11-27 05:10:47 -05:00
# ACS712
2020-03-19 10:16:52 -04:00
2022-09-01 05:19:21 -04:00
Library for the ACS712 Current Sensor - 5A, 20A, 30A and compatibles.
2021-01-29 06:31:58 -05:00
2020-03-19 10:16:52 -04:00
## Description
2020-11-27 05:10:47 -05:00
The ACS712 is a chip to measure current, both AC or DC. The chip has an
2021-10-16 05:40:09 -04:00
analogue output that provides a voltage that is linear with the current.
The ACS712 library supports only a built in ADC by means of **analogRead()**.
2023-09-20 13:55:34 -04:00
However since 0.3.4 there is an experimental **setADC()**.
The library has 4 core functions:
2020-03-19 10:16:52 -04:00
2022-09-01 05:19:21 -04:00
- **float mA_peak2peak(frequency = 50, cycles = 1)**
- **float mA_DC(cycles = 1)**
- **float mA_AC(frequency = 50, cycles = 1)**
2023-01-18 07:43:31 -05:00
- **float mA_AC_sampling(frequency = 50, cycles = 1)**
2020-03-19 10:16:52 -04:00
2023-09-20 13:55:34 -04:00
The parameter cycles is used to measure multiple cycles and average them.
2020-03-19 10:16:52 -04:00
2023-01-18 07:43:31 -05:00
To measure DC current a single **analogRead()** with conversion math is
sufficient to get a value.
2022-08-28 03:44:41 -04:00
To stabilize the signal **analogRead()** is called at least twice.
2023-01-18 07:43:31 -05:00
To measure AC current **a blocking loop for 20 milliseconds** (50 Hz, 1 cycle)
is run to determine the peak to peak value which is converted to the RMS value.
To convert the peak2peak value to RMS one need the so called crest or form factor.
2022-08-28 03:44:41 -04:00
This factor depends heavily on the signal form, hence its name.
2022-08-12 04:47:41 -04:00
For a perfect sinus the value is sqrt(2)/2 == 1/sqrt(2).
2022-08-28 03:44:41 -04:00
See **Form factor** below.
2023-09-20 13:55:34 -04:00
For a 60 Hz environment the blocking is ~16.7 milliseconds, still pretty long.
2022-09-01 05:19:21 -04:00
The **mA_AC_sampling()** calculates the average of the sumSquared of many measurements.
2023-09-20 13:55:34 -04:00
This function should be used when the form factor is not known.
2022-08-28 03:44:41 -04:00
2022-09-01 05:19:21 -04:00
Note to make precise measurements, the power supply of both the ACS712 and the ADC of
2023-01-18 07:43:31 -05:00
the processor should be as stable as possible.
2022-09-01 05:19:21 -04:00
That improves the stability of the midpoint and minimizes the noise.
2022-08-28 03:44:41 -04:00
2022-09-01 05:19:21 -04:00
#### Resolution
2022-08-28 03:44:41 -04:00
2022-09-01 05:19:21 -04:00
| Sensor | mVperA | LSB 10bit | LSB 12bit | LSB 16bit |
|:---------|:--------:|:-----------:|:-----------:|:-----------:|
| 5 A | 185 | 26.4 mA | 6.6 mA | 0.41 mA |
| 20 A | 100 | 48.9 mA | 12.2 mA | 0.76 mA |
| 30 A | 66 | 74.1 mA | 18.5 mA | 1.16 mA |
```cpp
getmAPerStep();
mA LSB = (5000 mV / maxADC) / mVperA * 1000.0;
mA LSB = (1000 * 5000 mV) / (maxADC * mVperA);
```
2022-08-28 03:44:41 -04:00
2023-01-18 07:43:31 -05:00
Although no 16 bit ADC built in are known, it indicates what resolution
2023-09-20 13:55:34 -04:00
could be obtained with such an ADC. It triggered the experimental supporting
of external ADC's with this library.
2020-03-19 10:16:52 -04:00
2021-01-29 06:31:58 -05:00
2024-01-25 08:02:49 -05:00
#### Calibration and accuracy
The library has no means to calibrate the output or use an offset.
However sort of calibrating can relatively easy be done by using
the MultiMap library.
MultiMap approaches a non-linear mapping by multiple linear mappings.
See https://github.com/RobTillaart/MultiMap.
2022-08-12 04:47:41 -04:00
#### Tests
2022-08-28 03:44:41 -04:00
The library is at least confirmed to work with the following boards:
2022-08-12 04:47:41 -04:00
2022-08-28 03:44:41 -04:00
| Device | Voltage | ADC steps | Notes |
|:-------------|:-------:|:---------:|:--------|
| Arduino UNO | 5.0V | 1024 | tested with RobotDyn ACS712 20 A breakout.
2022-10-10 06:21:13 -04:00
| Arduino UNO | 5.0V | 1024 | tested with Open-Smart ACS712 5 A breakout.
2022-08-28 03:44:41 -04:00
| Arduino NANO | 5.0V | 1024 | #18
| ESP32 | 3.3V | 4096 | #15
2023-01-18 07:43:31 -05:00
| Promicro | 5.0V | 1024 | #15
2022-08-12 04:47:41 -04:00
2023-09-20 13:55:34 -04:00
Please let me know of other working platforms / processors (and failing ones!).
2022-08-12 04:47:41 -04:00
2022-09-01 05:19:21 -04:00
## Compatibles
Robodyn has a breakout for the ACS758 - 50 A. - See resolution below.
This sensor has versions up to 200 Amps, so use with care!
2024-01-25 08:02:49 -05:00
AllegroMicro offers a lot of different current sensors that might be compatible.
2023-09-20 13:55:34 -04:00
These include bidirectional and unidirectional ones.
2022-09-01 05:19:21 -04:00
The unidirectional seem to be for DC only.
https://www.allegromicro.com/en/products/sense/current-sensor-ics/current-sensors-innovations
2024-01-25 08:02:49 -05:00
Devices that could be compatible:
| | ACS720 | ACS724 | ACS725 | ACS732 | ACS733| ACS758 | ACS772 | ACS773 | ACS780 | ACS781 |
|:------:|:------:|:------:|:------:|:------:|:------:|:------:|:------:|:------:|:------:|:------:|
| tested | | | #44 | | | | | | | |
| | ACS37002 | ACS37003 | ACS71240 | ACS3761X | ACS37800 | ACS72981 |
|:------:|:--------:|:--------:|:--------:|:--------:|:--------:|:--------:|
| tested | | | | | | |
2022-09-01 05:19:21 -04:00
If you have tested a compatible sensor, please share your experiences.
(can be done by opening an issue to update documentation)
#### Resolution ACS758
Not tested, but looks compatible - same formula as above
| Sensor | mVperA | LSB 10bit | LSB 12bit | LSB 16bit | directional |
|:---------|:--------:|:-----------:|:-----------:|:-----------:|:-------------:|
| 50 A | 40 | 122.2 mA | 30.5 mA | 1.91 mA | bi |
| 50 A | 60 | 81.5 mA | 20.3 mA | 1.27 mA | uni |
| 100 A | 20 | 244.4 mA | 61.0 mA | 3.81 mA | bi |
| 100 A | 40 | 122.2 mA | 30.5 mA | 1.91 mA | uni |
| 150 A | 13.3 | 367.5 mA | 91.8 mA | 5.74 mA | bi |
| 150 A | 26.7 | 183.1 mA | 45.7 mA | 2.86 mA | uni |
| 200 A | 10 | 488.8 mA | 122.1 mA | 7.63 mA | bi |
| 200 A | 20 | 244.4 mA | 61.0 mA | 3.81 mA | uni |
2021-01-29 06:31:58 -05:00
## Interface
2023-05-20 09:38:39 -04:00
```cpp
#include ACS712.h
```
2021-01-29 06:31:58 -05:00
#### Base
2023-01-18 07:43:31 -05:00
- **ACS712(uint8_t analogPin, float volts = 5.0, uint16_t maxADC = 1023, float mVperAmpere = 100)** constructor.
2022-08-12 04:47:41 -04:00
It defaults a 20 A type sensor, which is defined by the default value of mVperAmpere. See table below.
2022-07-28 03:22:13 -04:00
Volts is the voltage used by the (Arduino) internal ADC. maxADC is the maximum output of the internal ADC.
2022-08-28 03:44:41 -04:00
The defaults are based upon an Arduino UNO, 10 bits ADC.
2022-07-28 03:22:13 -04:00
These two ADC parameters are needed to calculate the voltage output of the ACS712 sensor.
2022-09-01 05:19:21 -04:00
- **float mA_peak2peak(float frequency = 50, uint16_t cycles = 1)** blocks ~21 ms to sample a whole 50 or 60 Hz period.
2023-01-18 07:43:31 -05:00
Returns the peak to peak current, can be used to determine form factor.
The **mA_peak2peak()** can also be used to measure on a zero current line
2022-10-10 06:21:13 -04:00
to get an indication of the lowest detectable current.
2023-01-18 07:43:31 -05:00
Finally this function is used internally to detect the noiseLevel in mV on a zero current line.
2022-09-01 05:19:21 -04:00
- **float mA_AC(float frequency = 50, uint16_t cycles = 1)** blocks ~21 ms to sample a whole 50 or 60 Hz period.
2022-08-28 03:44:41 -04:00
Note that a lower frequency, or more cycles, will increase the blocking period.
The function returns the AC current in mA.
2022-09-01 05:19:21 -04:00
Its working is based upon multiplying the peak2peak value by the FormFactor which must be known and set.
2022-08-28 03:44:41 -04:00
- 0.2.2 frequencies other integer values than 50 and 60 are supported.
- 0.2.3 floating point frequencies are supported to tune even better.
- 0.2.8 the parameter cycles allow to average over a number of cycles.
- **float mA_AC_sampling(float frequency = 50, uint16_t cycles = 1)** blocks ~21 ms to sample a whole period.
The function returns the AC current in mA. (Note it returns a float).
Its working is based upon sampling a full period and take the square root of the average sumSquared.
This function is intended for signals with unknown Form Factor.
- 0.2.8 the parameter cycles allow to average over a number of cycles.
2022-09-01 05:19:21 -04:00
- **float mA_DC(uint16_t samples = 1)** blocks < 1 ms (Arduino UNO) as it calls **analogRead()** twice.
2022-08-28 03:44:41 -04:00
A negative value indicates the current flows in the opposite direction.
2022-09-01 05:19:21 -04:00
- 0.2.8 the parameter samples allow to average over a number of samples.
2024-01-25 08:02:49 -05:00
- 0.3.9 calls yield() every 2nd iteration to improve behaviour under RTOS.
2022-08-28 03:44:41 -04:00
2023-05-20 09:38:39 -04:00
#### mA_AC_sampling performance trick.
A trick to sample faster is to set the frequency to 2 times the actual frequency so to 100 or 120 Hz.
This results in sampling only half a period and the same current will be measured.
Advantage is that the function only blocks for ~10 ms @ 50Hz (8.5 @ 60Hz).
The drawback is about 4x as many variation.
So only use if the performance (or less blocking) is needed.
In a similar way one can increase the accuracy (reducing the variation)
by setting the frequency a factor 2 lower (25 and 30 Hz).
Drawback is a far longer blocking time.
Use with care!
See - https://github.com/RobTillaart/ACS712/issues/38
2022-09-01 05:19:21 -04:00
#### Midpoint
2021-06-24 08:41:36 -04:00
2022-10-10 06:21:13 -04:00
The midpoint is the (raw) zero-reference for all current measurements.
2023-01-18 07:43:31 -05:00
It is defined in steps of the ADC and is typical around half the **maxADC** value defined
2022-09-01 05:19:21 -04:00
in the constructor. So for a 10 bit ADC a number between 500..525 is most likely.
2021-06-24 08:41:36 -04:00
2022-11-21 14:44:08 -05:00
Since 0.3.0 all midpoint functions return the actual midPoint.
2021-01-29 06:31:58 -05:00
2022-09-01 05:19:21 -04:00
- **uint16_t setMidPoint(uint16_t midPoint)** sets midpoint for the ADC conversion.
2022-11-21 14:44:08 -05:00
Parameter must be between 0 and maxADC/2, otherwise midpoint is not changed.
2021-10-16 05:40:09 -04:00
- **uint16_t getMidPoint()** read the value set / determined.
2022-09-01 05:19:21 -04:00
- **uint16_t incMidPoint()** manual increase midpoint, e.g. useful in an interactive application.
2023-05-20 09:38:39 -04:00
Will not increase if midpoint equals maxADC.
2022-09-01 05:19:21 -04:00
- **uint16_t decMidPoint()** manual decrease midpoint.
2022-10-10 06:21:13 -04:00
Will not decrease if midpoint equals 0.
- **uint16_t resetMidPoint()** resets the midpoint to the initial value of maxADC / 2 as in the constructor.
2023-04-20 06:03:58 -04:00
- **uint16_t autoMidPointDC(uint16_t cycles = 1)** Auto midPoint for DC only.
Assuming zero DC current. To reduce the noise cycles must be increased even up to 100.
This method is typically much faster for DC than the **autoMidPoint(freq, cycles)**
for the same number of cycles. (See issue #35)
- **uint16_t autoMidPoint(float frequency = 50, uint16_t cycles = 1)** Auto midPoint, for any AC current or zero DC current.
For DC one can use a high frequency e.g. 1000 Hz to reduce the time blocking.
The function takes the average of many measurements during one or more full cycles.
Note the function therefore blocks for at least 2 periods which is about
40 ms for 50 Hz.
By increasing the number of cycles the function averages even more measurements,
possibly resulting in a better midPoint. Idea is that noise will average out.
This function is mandatory for measuring AC.
- 0.2.2 frequencies other than 50 and 60 are supported.
- 0.2.8 the parameter cycles allow to average over a number of cycles.
2022-09-01 05:19:21 -04:00
Since version 0.3.0 there is another way to determine the midPoint.
2023-01-18 07:43:31 -05:00
One can use the two debug functions.
2022-10-10 06:21:13 -04:00
(milliseconds > 20 to get at least a full cycle)
2022-09-01 05:19:21 -04:00
- **uint16_t getMinimum(uint16_t milliSeconds = 20)**
- **uint16_t getMaximum(uint16_t milliSeconds = 20)**
and take the average of these two values. In code:
```cpp
2022-11-21 14:44:08 -05:00
uint16_t midpoint = ACS.setMidPoint(ACS.getMinimum(20)/2 + ACS.getMaximum(20)/ 2);
2022-09-01 05:19:21 -04:00
```
See - ACS712_20_AC_midPoint_compare.ino
2023-01-18 07:43:31 -05:00
The ACS712 has a midPoint level that is specified as 0.5 \* VCC.
So **autoMidPoint()** can help to detect voltage deviations for the ACS712.
2022-09-01 05:19:21 -04:00
The library does not support this yet.
2021-01-29 06:31:58 -05:00
2023-01-18 07:43:31 -05:00
#### Form factor
2021-01-29 06:31:58 -05:00
2023-09-20 13:55:34 -04:00
The form factor is also known as the **crest factor**.
2022-09-01 05:19:21 -04:00
It is only used for signals measured with **mA_AC()**.
2021-06-24 08:41:36 -04:00
2022-10-10 06:21:13 -04:00
- **void setFormFactor(float formFactor = ACS712_FF_SINUS)** manually sets the form factor.
2022-08-12 04:47:41 -04:00
Must typical be between 0.0 and 1.0, see constants below.
2023-01-18 07:43:31 -05:00
- **float getFormFactor()** returns current form factor.
2021-06-24 08:41:36 -04:00
2021-12-09 09:42:38 -05:00
The library has a number of predefined form factors:
2021-06-24 08:41:36 -04:00
2023-09-20 13:55:34 -04:00
| definition | value | approx | notes |
|:---------------------|:----------------|:--------:|:----------|
| ACS712_FF_SQUARE | 1.0 | 1.000 |
| ACS712_FF_SINUS | 1.0 / sqrt(2) | 0.707 | default |
| ACS712_FF_TRIANGLE | 1.0 / sqrt(3) | 0.577 |
| ACS712_FF_SAWTOOTH | 1.0 / sqrt(3) | 0.577 |
2021-06-24 08:41:36 -04:00
It is important to measure the current with a calibrated multimeter
2023-01-18 07:43:31 -05:00
and determine / verify the form factor of the signal.
2021-12-09 09:42:38 -05:00
This can help to improve the quality of your measurements.
2021-01-29 06:31:58 -05:00
2022-08-12 04:47:41 -04:00
Please let me know if other crest factors need to be added.
2022-09-01 05:19:21 -04:00
Since version 0.3.0 the form factor can be determined by
```cpp
2022-10-10 06:21:13 -04:00
float formFactor = 2.0 * mA_AC_sampling() / ACS.mA_peak2peak();
2022-09-01 05:19:21 -04:00
```
See - ACS712_20_determine_form_factor.ino
2021-01-29 06:31:58 -05:00
#### Noise
2022-10-10 06:21:13 -04:00
Default = 21 mV (datasheet)
2021-06-24 08:41:36 -04:00
2023-01-18 07:43:31 -05:00
- **void setNoisemV(uint8_t noisemV = 21)** sets the noise level,
2022-08-28 03:44:41 -04:00
is used to determine zero level e.g. in the AC measurements with **mA_AC()**.
2021-10-16 05:40:09 -04:00
- **uint8_t getNoisemV()** returns the set value.
2022-10-10 06:21:13 -04:00
- **float mVNoiseLevel(float frequency, uint16_t cycles)** determines the mV of noise.
2023-01-18 07:43:31 -05:00
Measurement should be taken when there is no AC/DC current or a constant DC current.
2022-10-10 06:21:13 -04:00
The level will give a (not quantified yet) indication of the accuracy of the measurements.
A first order indication can be made by comparing it to voltage / 2 of the constructor.
2021-01-29 06:31:58 -05:00
2023-01-18 07:43:31 -05:00
Noise on the signal can be reduced by using a low pass (RC) filter.
2022-10-10 06:21:13 -04:00
Version 0.3.1 includes experimental code to take two sample and average them.
The idea is that ```((3 + 5)/2)^2 < (3^2 + 5^2)/2```
In theory this should suppress noise levels however more investigation in
software noise detection and suppression is needed.
- **void suppressNoise(bool flag)** experimental noise suppression.
2022-09-01 05:19:21 -04:00
2021-06-24 08:41:36 -04:00
2021-01-29 06:31:58 -05:00
#### mV per Ampere
2023-01-18 07:43:31 -05:00
Used for both for AC and DC measurements.
2022-08-12 04:47:41 -04:00
Its value is defined in the constructor and depends on type sensor used.
These functions allow to adjust this setting run-time.
2021-06-24 08:41:36 -04:00
2022-08-12 04:47:41 -04:00
- **void setmVperAmp(float mVperAmpere)** sets the milliVolt per Ampere measured.
- **float getmVperAmp()** returns the set value.
2021-01-29 06:31:58 -05:00
2022-08-12 04:47:41 -04:00
Typical values see "Resolution" section above, and the "voltage divider" section below.
2021-06-24 08:41:36 -04:00
2021-01-29 06:31:58 -05:00
2022-08-12 04:47:41 -04:00
#### Frequency detection
Experimental functionality for AC signal only!
2021-12-01 08:20:22 -05:00
2021-12-02 13:29:13 -05:00
- **float detectFrequency(float minimalFrequency = 40)** Detect the frequency of the AC signal.
- **void setMicrosAdjust(float factor = 1.0)** adjusts the timing of micros in **detectFrequency()**.
2021-12-01 08:20:22 -05:00
Values are typical around 1.0 ± 1%
2023-01-18 07:43:31 -05:00
- **float getMicrosAdjust()** returns the set factor.
2021-12-01 08:20:22 -05:00
2022-08-12 04:47:41 -04:00
The minimum frequency of 40 Hz is used to sample for enough time to find the minimum and maximum
2023-01-18 07:43:31 -05:00
for 50 and 60 Hz signals.
2021-12-01 08:20:22 -05:00
Thereafter the signal is sampled 10 cycles to minimize the variation of the frequency.
2023-01-18 07:43:31 -05:00
The **microsAdjust()** is to adjust the timing of **micros()**.
This function is only useful if one has a good reference source like a calibrated function generator
to find the factor to adjust.
2022-08-12 04:47:41 -04:00
Testing with my UNO I got a factor 0.9986.
2023-01-18 07:43:31 -05:00
Current version is experimental and not performance optimized.
2022-08-12 04:47:41 -04:00
2023-01-15 14:39:54 -05:00
#### setADC (experimental 0.3.4)
2023-01-18 07:43:31 -05:00
- **void setADC(uint16_t (\*)(uint8_t), float volts, uint16_t maxADC)** sets the ADC function and the parameters of the used ADC.
The library uses the internal **analogRead()** as default.
Be sure to set the parameters of the ADC correctly.
The easiest way to implement an external ADC is to make a wrapper function as casting for
function pointer is a no go area.
2023-01-15 14:39:54 -05:00
```cpp
2023-01-18 07:43:31 -05:00
// set to external ADC - 5 volts 12 bits
ACS.setADC(myAnalogRead, 5.0, 4096);
...
uint16_t myAnalogRead(uint8_t pin)
2023-01-15 14:39:54 -05:00
{
2023-01-18 07:43:31 -05:00
return MCP.read(pin); // assuming MCP is ADC object.
2023-01-15 14:39:54 -05:00
}
```
2023-01-18 07:43:31 -05:00
To reset to the internal ADC use **NULL** as function pointer.
Be sure to set the parameters of the ADC correctly.
```cpp
// reset to internal ADC - 5 volts 10 bits
ACS.setADC(NULL, 5.0, 1023);
```
2023-01-15 14:39:54 -05:00
- example ACS712_20_DC_external_ADC.ino
- https://github.com/RobTillaart/ACS712/issues/31
2024-01-25 08:02:49 -05:00
- example ACS712_ESP32_external_ADC.ino
- https://github.com/RobTillaart/ACS712/issues/46
2023-01-15 14:39:54 -05:00
2023-01-18 07:43:31 -05:00
Note that the use of an external ADC should meet certain performance requirements,
especially for measuring **ma-AC()**.
2024-01-25 08:02:49 -05:00
To 'catch' the peaks well enough one needs at least 2 samples per millisecond (2000 sps)
for a 60 Hz signal. That gives 34 samples for 360 degrees => 10.6 degrees, which
results in a max deviation of 5.3 degrees from peak => max 0.5% off.
As a 50 Hz signal is a bit slower, 2000 sps would give 40 samples for => 9 degrees,
which results in a max deviation of 4.5 degrees from peak => max 0.4% off.
2023-01-18 07:43:31 -05:00
The 16 bit I2C **ADS1115** in continuous mode gives max 0.8 samples per millisecond.
This will work perfect for high resolution **mA-DC()** but is not fast enough for
2024-01-25 08:02:49 -05:00
doing **mA-AC()**. It will get an accuracy around ~2%.
2023-01-18 07:43:31 -05:00
The SPI based **MCP3202** ao can do up to 100 samples per millisecond at 12 bit.
These ADC's are perfect both **mA-DC()** and **mA-AC()**.
- https://github.com/RobTillaart/ADS1X15
- https://github.com/RobTillaart/MCP_ADC
2022-08-12 04:47:41 -04:00
## Voltage divider
As per issue #15 in which an ACS712 was connected via a voltage divider to the ADC of an ESP32.
Schema
```
ACS712 ----[ R1 ]----o----[ R2 ]---- GND
|
|
ADC of processor
```
2021-12-01 08:20:22 -05:00
2023-01-18 07:43:31 -05:00
The voltage divider gave an error of about a factor 2 as all voltages were divided,
2022-08-28 03:44:41 -04:00
including the "offset" from the **midPoint** zero current level.
2021-12-01 08:20:22 -05:00
2023-01-18 07:43:31 -05:00
By adjusting the mV per Ampere with **setmVperAmp(float mva)** the readings can be corrected
2022-08-12 04:47:41 -04:00
for this "voltage divider effect".
2021-12-01 08:20:22 -05:00
2020-03-19 10:16:52 -04:00
2022-08-12 04:47:41 -04:00
#### Examples:
2023-01-18 07:43:31 -05:00
For a 20 A type sensor, 100 mV/A would be the normal value.
2022-08-12 04:47:41 -04:00
After using a voltage divider one need to adjust the mVperAmp.
| R1 (ACS) | R2 (GND) | voltage factor | mVperAmp corrected |
|:--------:|:---------:|:-------------------------------:|:-----------------------:|
| 10200 | 4745 | 4745 / (10200 + 4745) = 0.3175 | 100 \* 0.3175 = 31.75 |
| 4745 | 10200 | 10200 / (10200 + 4745) = 0.6825 | 100 \* 0.6825 = 68.25 |
| 10200 | 9800 | 9800 / (10200 + 9800) = 0.4900 | 100 \* 0.4900 = 49.00 |
2022-08-28 03:44:41 -04:00
**Note:** setting the midPoint correctly is also needed when using a voltage divider.
2020-03-19 10:16:52 -04:00
2021-01-29 06:31:58 -05:00
2022-09-01 05:19:21 -04:00
## Disconnect detection
2020-03-19 10:16:52 -04:00
2022-09-01 05:19:21 -04:00
(to be tested)
2020-03-19 10:16:52 -04:00
2023-01-18 07:43:31 -05:00
To detect that the ACS712 is disconnected from the ADC one could connect the
2022-09-01 05:19:21 -04:00
analog pin via a pull-down to GND. A pull-up to VCC is also possible.
Choose the solution that fits your project best. (Think safety).
2020-03-19 10:16:52 -04:00
2023-01-18 07:43:31 -05:00
**mA_DC()** and **mA_AC_sampling()** will report HIGH values (Out of range) when
the ACS712 is disconnected.
2022-09-01 05:19:21 -04:00
The other - peak2peak based functions - will see this as zero current (min == max).
2020-03-19 10:16:52 -04:00
2022-09-01 05:19:21 -04:00
Schema with PULL-UP.
```
ACS712 OUT
|
|
VCC ----[ R1 ]----o R1 = 1 M ohm.
|
|
ADC of processor
```
The library does not support this "extreme values" detection.
2024-01-25 08:02:49 -05:00
## RTOS
The library can be used in an RTOS environment, however a few functions of this
library are blocking for relative long times.
In version 0.3.9 the **mA_DC()** calls **yield()** between every three calls of analogRead.
This is done both for the external and intern ADC to prevent blocking of other threads.
For the **mA_AC()** and **mA_peak2peak()** a call to yield() is not desirable
as the samples are all needed to make a decent measurement.
For the applications that need proper scheduling one should put the sampling of the
INA226 at least for **AC** in a separate thread.
There is no RTOS example. If you have and willing to share you are welcome.
2023-09-20 13:55:34 -04:00
## ESPhome
For people who want to use this library for ESPhome, there exists a wrapper
class for this ACS712 library.
- https://github.com/marianomd/acs712-esphome
As I do not have ESPhome know how, please share your experiences.
This can be done by an issue.
2022-09-01 05:19:21 -04:00
## Operation
2020-03-19 10:16:52 -04:00
2020-11-27 05:10:47 -05:00
The examples show the basic working of the functions.
2021-01-29 06:31:58 -05:00
2021-06-24 08:41:36 -04:00
2021-01-29 06:31:58 -05:00
## Future
2023-01-03 14:19:20 -05:00
#### Must
2023-04-20 06:03:58 -04:00
- test more
- other than the 20A module
- 5, 10, 30, 50 ...
- need to buy extra hardware
2023-01-03 14:19:20 -05:00
2022-08-28 03:44:41 -04:00
#### Should - 0.3.x
2022-08-12 04:47:41 -04:00
2023-04-20 06:03:58 -04:00
- investigate **estimateMidPoint(confidence)** See issue #35
- is less blocking by spreading the sampling over many calls.
returning a confidence level.
2022-10-10 06:21:13 -04:00
- investigate noise suppression #21 (0.3.1 and later)
2023-01-18 07:43:31 -05:00
- investigate blocking calls:
- **mA_AC()** blocks for about 20 ms at 50 Hz.
This might affect task scheduling on a ESP32. Needs to be investigated.
Probably need a separate thread that wakes up when new analogRead is available?
- RTOS specific class?
2023-04-20 06:03:58 -04:00
- investigate **detectFrequency(float)** blocks pretty long.
2022-09-01 05:19:21 -04:00
#### Could
- merge **mA_AC()** and **mA_AC_sampling()** into one. (0.4.0)
- or remove - depreciate - the worst one
2023-01-18 07:43:31 -05:00
- add range check to (all) set functions?
2023-04-20 06:03:58 -04:00
- add unit test for **autoMidPointDC()** (needed?)
- **setMidPoint()**
- Q: could midpoint be set beyond maxADC? is there any use case?
2022-08-12 04:47:41 -04:00
2023-01-18 07:43:31 -05:00
#### Won't (unless requested)
2022-08-12 04:47:41 -04:00
2022-08-28 03:44:41 -04:00
- investigate support for micro-Amperes. **ACS.uA_DC()**
2023-01-18 07:43:31 -05:00
- need a very stable voltage
- needs a 24 bit ADC
2022-08-28 03:44:41 -04:00
- default noise is already ~21mV...
- => not feasible in normal setup.
2022-09-01 05:19:21 -04:00
- Should the FormFactor not be just a parameter of **mA_AC()**
it is the only function using it. ==> No unnecessary breaking API
- should cycles be an uint8_t ?
- No, uint16 allows averaging in minutes range uint8_t just ~5 seconds
- midPoint can be a float so it can be set more exact.
- extra precision is max half bit = smaller than noise?
- math will be slower during sampling (UNO)
2023-01-18 07:43:31 -05:00
- split the readme.md in multiple documents?
- which?
- setADC() to support > 16 bit?
- uint32_t performance penalty?
2022-08-12 04:47:41 -04:00
2023-09-20 13:55:34 -04:00
## Support
If you appreciate my libraries, you can support the development and maintenance.
Improve the quality of the libraries by providing issues and Pull Requests, or
donate through PayPal or GitHub sponsors.
Thank you,