Compare commits
No commits in common. "main" and "develop" have entirely different histories.
1 changed files with 23 additions and 21 deletions
44
README.md
44
README.md
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
# powerMC - Energy and Current Measurement System
|
# powerMC - Energy and Current Measurement System
|
||||||
|
|
||||||
An ESP32 based energy and current measurement system.
|
An ESP32 based energy and current measurement system.
|
||||||
|
@ -180,7 +181,8 @@ The `configureIna226()` function configures the INA226 sensor with specific sett
|
||||||
- Description: Sets the maximum current shunt value with normalization (3rd parameter set to true) to 3 floating-point accuracy.
|
- Description: Sets the maximum current shunt value with normalization (3rd parameter set to true) to 3 floating-point accuracy.
|
||||||
- Code:
|
- Code:
|
||||||
```cpp
|
```cpp
|
||||||
ina226Status = ina226.setMaxCurrentShunt(current ampere, shunt ohm, true);
|
ina226Status = ina226.setMaxCurrentShunt(current ampere,
|
||||||
|
shunt ohm, true);
|
||||||
```
|
```
|
||||||
|
|
||||||
3. **Set Averaging:**
|
3. **Set Averaging:**
|
||||||
|
@ -189,25 +191,25 @@ The `configureIna226()` function configures the INA226 sensor with specific sett
|
||||||
|
|
||||||
## Used libraries (Arduino)
|
## Used libraries (Arduino)
|
||||||
|
|
||||||
- WiFi at version 2.0.0
|
WiFi at version 2.0.0
|
||||||
- ESP32httpUpdate at version 2.1.145
|
ESP32httpUpdate at version 2.1.145
|
||||||
- HTTPClient at version 2.0.0
|
HTTPClient at version 2.0.0
|
||||||
- WiFiClientSecure at version 2.0.0
|
WiFiClientSecure at version 2.0.0
|
||||||
- Update at version 2.0.0
|
Update at version 2.0.0
|
||||||
- FS at version 2.0.0
|
FS at version 2.0.0
|
||||||
- SPIFFS at version 2.0.0
|
SPIFFS at version 2.0.0
|
||||||
- WebServer at version 2.0.0
|
WebServer at version 2.0.0
|
||||||
- ArduinoJson at version 7.0.2
|
ArduinoJson at version 7.0.2
|
||||||
- WiFiManager at version 2.0.16-rc.2
|
WiFiManager at version 2.0.16-rc.2
|
||||||
- DNSServer at version 2.0.0
|
DNSServer at version 2.0.0
|
||||||
- EEPROM at version 2.0.0
|
EEPROM at version 2.0.0
|
||||||
- Wire at version 2.0.0
|
Wire at version 2.0.0
|
||||||
- INA226 at version 0.5.2 (zip file in repository modified by me)
|
INA226 at version 0.5.2
|
||||||
- Adafruit GFX Library at version 1.11.9
|
Adafruit GFX Library at version 1.11.9
|
||||||
- Adafruit BusIO at version 1.15.0
|
Adafruit BusIO at version 1.15.0
|
||||||
- SPI at version 2.0.0
|
SPI at version 2.0.0
|
||||||
- Adafruit SSD1306 at version 2.5.9
|
Adafruit SSD1306 at version 2.5.9
|
||||||
- Adafruit Unified Sensor at version 1.1.14
|
Adafruit Unified Sensor at version 1.1.14
|
||||||
- Adafruit BME280 Library at version 2.2.4
|
Adafruit BME280 Library at version 2.2.4
|
||||||
|
|
||||||
Use the modified INA226 zip file from the repository to support shunt resistors down to 0.0001 Ohm.
|
Use the modified INA226 zip file from the repository to support shunt resistors down to 0.0001 Ohm.
|
||||||
|
|
Loading…
Reference in a new issue