-
Notifications
You must be signed in to change notification settings - Fork 187
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
feat(shell): add brightness_value and brightness_mode #115
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #115 +/- ##
==========================================
+ Coverage 30.35% 30.55% +0.20%
==========================================
Files 15 15
Lines 1980 2003 +23
Branches 315 322 +7
==========================================
+ Hits 601 612 +11
- Misses 1360 1372 +12
Partials 19 19 ☔ View full report in Codecov by Sentry. |
I suggest use property to get brightness instead of function. also brightness can also accept set Example usage print(d.brightness)
d.brightness = 80 print(d.brightness_mode) # output BrightnessMode.AUTO | BrightnessMode.MANUAL
d.brightness_mode = BrightnessMode.AUTO here the BrightnessMode parent class is (int, enum.Enum) |
Modified as required |
1、The current brightness value can be obtained through brightness_value
2、You can use brightness_mode to determine whether the current brightness adjustment is automatic or manual