Skip to content

Commit

Permalink
V1.19.03
Browse files Browse the repository at this point in the history
  • Loading branch information
jgyates committed Jun 24, 2024
1 parent 9fa061d commit 84f1c82
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ All notable changes to this project will be documented in this file.
- Update to genmopeka.py add on to ignore invalid readings from mopeka sensor.
- Fixed issue with latest version of voipms. Install now uses version 0.2.5.
- Added additional parameter checking on add on programs
- Minor update for PowerPact model (removed display of unsupported sensors: current and power)

## V1.19.02 -2024-02-14
- Update for Kohler APM603 support
Expand Down
6 changes: 4 additions & 2 deletions genmonlib/generac_evolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def SetupTiles(self):
)
self.TileList.append(Tile)

if self.EvolutionController and not self.LiquidCooled and not self.bDisablePowerLog:
if self.EvolutionController and not self.LiquidCooled and not self.bDisablePowerLog and not self.PowerPact:
NominalLegCurrent = ((float(self.NominalKW) * 1000) / 2 ) / (self.NominalLineVolts / 2)
# Setup gauges for EvoAC internal CTs
Tile = MyTile(
Expand Down Expand Up @@ -5214,7 +5214,9 @@ def PowerMeterIsSupported(self):
return True
if not self.EvolutionController: # Not supported by Nexus at this time
return False

if self.PowerPact:
return False

if (
not len(self.NominalKW)
or self.NominalKW.lower() == "unknown"
Expand Down

0 comments on commit 84f1c82

Please sign in to comment.