Skip to content

Commit

Permalink
1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
britkat1980 committed Aug 22, 2022
1 parent eee8d6c commit 675360f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GivTCP/read.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,10 +348,10 @@ def getData(fullrefresh): #Read from Invertor put in cache
discharge_enable="disable"

#Get Charge/Discharge Active status
discharge_rate=max(GEInv.battery_discharge_limit*3,100)
discharge_rate=min(GEInv.battery_discharge_limit*3,100)
#if discharge_rate>100: discharge_rate=100

charge_rate=max(GEInv.battery_charge_limit*3,100)
charge_rate=min(GEInv.battery_charge_limit*3,100)
#if charge_rate>100: charge_rate=100

#Calculate Mode
Expand Down

0 comments on commit 675360f

Please sign in to comment.