Browse Source
Merge pull request #2 from tbnobody/pypackage
Fixed total production for string 3
pull/25/head
Jan-Jonas Sämann
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
tools/rpi/hoymiles/decoders/__init__.py
|
|
@ -206,7 +206,7 @@ class HM1500_Decode0B(StatusResponse): |
|
|
|
return self.unpack('>H', 32)[0]/10 |
|
|
|
@property |
|
|
|
def dc_energy_total_3(self): |
|
|
|
return self.unpack('>L', 40)[0] |
|
|
|
return self.unpack('>L', 38)[0] |
|
|
|
@property |
|
|
|
def dc_energy_daily_3(self): |
|
|
|
return self.unpack('>H', 44)[0] |
|
|
|