-
Notifications
You must be signed in to change notification settings - Fork 12
MiniTFTFeatherWing backlight value issue #43
New issue
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
Comments
Thanks for reporting this. I had noticed it a little while back, but it fell through the cracks. |
Did you want to submit a PR? The set value should be correct, but return value wrong. |
Just submitted a PR. Opted to invert the value so that 1.0 is bright and 0.0 is dark as suggested in this bug report |
Fixed by #44 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When using the backlight setting, the value returned is not the value set. For example, the following code:
`
produces
At a minimum these values should be consistent between set/get. The following should result in no change to the value:
Ideally, given the parameter name "brightness" the value 1.0 should be maximum brightness and the value 0.0 should be off for clarity.
Thus line 105:
should become:
The text was updated successfully, but these errors were encountered: