Skip to content

Commit

Permalink
Merge branch 'master' into testing
Browse files Browse the repository at this point in the history
  • Loading branch information
KipK authored Nov 22, 2022
2 parents 0fb74da + 10c3d7f commit 4e5070e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/wired-ethernet.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ esptool.py --baud 921600 --before default_reset --after hard_reset write_flash -
Subsequent upgrades:

```bash
esptool.py --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 40m --flash_size detect 0x1000 0x10000 openevse_esp32-gateway-e.bin
esptool.py --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 40m --flash_size detect 0x1000 openevse_esp32-gateway-e.bin
```

### For rev F/G
Expand Down
2 changes: 1 addition & 1 deletion src/mqtt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void mqttmsg_callback(MongooseString topic, MongooseString payload) {
else if (topic_string == mqtt_live_pwr)
{
shaper.setLivePwr(payload_str.toInt());
DBUGF("shaper: available amps:%dW", shaper.getChgCur());
DBUGF("shaper: available amps:%dA", shaper.getChgCur());
}
else if (topic_string == mqtt_vrms)
{
Expand Down

0 comments on commit 4e5070e

Please sign in to comment.