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
Update the enabled and output_disabled parameters to reflect a three-valued enum of {Off, Powered, Enabled}.
enabled
output_disabled
{Off, Powered, Enabled}
If EEPROM is modified to store more than a bool enabled, the format will change and previous user settings will be lost.
bool enabled
It's not immediately clear of storing Powered in the channel EEPROM settings is valid.
Powered
The text was updated successfully, but these errors were encountered:
Agreed. Can we convert Powered to Off on save?
Off
Sorry, something went wrong.
Yeah, I think that's not a bad approach.
Since this also affects the handling of absent channels, let's continue #170 (comment) here as well.
Maybe it's easier to add an additional field to the settings structure that explicitly marks a channel as absent.
-> #175
Successfully merging a pull request may close this issue.
Update the
enabled
andoutput_disabled
parameters to reflect a three-valued enum of{Off, Powered, Enabled}
.Note
If EEPROM is modified to store more than a
bool enabled
, the format will change and previous user settings will be lost.It's not immediately clear of storing
Powered
in the channel EEPROM settings is valid.The text was updated successfully, but these errors were encountered: