Skip to content
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

Difficult to set the max. charge current to 6 Ampere #121

Closed
kalwados opened this issue Feb 25, 2024 · 1 comment
Closed

Difficult to set the max. charge current to 6 Ampere #121

kalwados opened this issue Feb 25, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@kalwados
Copy link

I find it very difficult to set the charge current slider to 6 A, because the slider jumps from 6 A to Zero. With some modifications to web.js this problem can be solved; patch attached,
web.js.patch

@steff393 steff393 added the enhancement New feature or request label Mar 24, 2024
@steff393
Copy link
Owner

Thanks, will be implemented, but I'd propose the following form:

if ((val >= 0) && (val <= 30)) {
	elementCurrentSlider.value = val = 0;
}
if ((val > 30) && (val <= 60)) {
	elementCurrentSlider.value = val = 60;
}

hawa-lc4 pushed a commit to hawa-lc4/wbec that referenced this issue Apr 15, 2024
hawa-lc4 pushed a commit to hawa-lc4/wbec that referenced this issue Aug 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants