We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In HPSU.py the logic on "commands" require them to be defined with all nibble uppercase (e.g. if command[6:8] != "FA").
the file etc/pyHPSU/commands_hpsu.csv has a last row with some lowercase nibble
t_flow_cooling;61 00 fa 03 dd 00 00;190;d;10;w
this should be
t_flow_cooling;61 00 FA 03 DD 00 00;190;d;10;w
The text was updated successfully, but these errors were encountered:
Thats a quick fix. But I would also add a ".upper()" at HPSU.py where it is needed. Will add it at the next pull request
Sorry, something went wrong.
No branches or pull requests
In HPSU.py the logic on "commands" require them to be defined with all nibble uppercase (e.g. if command[6:8] != "FA").
the file etc/pyHPSU/commands_hpsu.csv has a last row with some lowercase nibble
t_flow_cooling;61 00 fa 03 dd 00 00;190;d;10;w
this should be
t_flow_cooling;61 00 FA 03 DD 00 00;190;d;10;w
The text was updated successfully, but these errors were encountered: