-
Notifications
You must be signed in to change notification settings - Fork 4
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
Ability to automatically switch to Conservation mode when a certain percentage of charge is reached #14
Comments
Sorry for taking so long to respond. Since the conservation mode is a firmware feature, changing the percentage it kicks in is not possible. You CAN change the max percentage in Lenovo Vantage, but this feature is only available on ThinkPads, not our puny IdeaPads. As for the automatic switch, there's no way my program can tell when the battery reaches past a certain charge level. All I can do is to check the current percentage every few minutes. That would theoretically work without much of a performance impact and would be easy to implement. The issue is, it would keep switching the charging on and off constantly, and I'm not sure that's good for the battery. But it's doable. Would this be an acceptable implementation @webdevs-pro? |
I think it would be enough to just switch it on at 80%. Because when I charge mine and turn protection on at 80% it keeps the current charge and is not discharging the battery, insted using the connected external power. |
@webdevs-pro `#!/bin/bash TOP_THRESHOLD=84 while true; do
` |
Hey @idwowrack, thanks!
This is part of my script |
Looks like more promising using AHK for auto mode switching, @webdevs-pro |
Hey @reagcz Thanks for useful app. Only one thing I really need is ability to automatically switch to Conservation mode for example on 80%. Or maybe it is possible to change Conservation mode rate from 60% to 80%?
The text was updated successfully, but these errors were encountered: