Skip to content

Commit

Permalink
Merge pull request #377 from jmccrohan/lookup_table_passthrough
Browse files Browse the repository at this point in the history
Passthrough missing lookup table value
  • Loading branch information
StephanJoubert authored Aug 30, 2023
2 parents 9e9fceb + 1290c80 commit 6993c24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/solarman/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def lookup_value (self, value, options):
for o in options:
if (o['key'] == value):
return o['value']
return "LOOKUP"
return value


def try_parse_ascii (self, rawData, definition, start, length):
Expand Down

0 comments on commit 6993c24

Please sign in to comment.