Compare commits

..

No commits in common. "3f697e0b122134474f0692311b0b039132165caf" and "7855eaae388703e51392a3b01eadeafb27fc8981" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -157,12 +157,12 @@ void lightEngine()
//Serial.println("lon: pin" + (String)i + " = PWM(" + (String)tmp_pwm + ")");
analogWrite(pins[i], tmp_pwm);
}
} else { // light state is off
} else {
if (current_bri[i] != 0)
{
in_transition = true;
current_bri[i] += step_level[i] / BRI_MOD_STEPS_PER_SEC;
current_bri[i] -= step_level[i] / BRI_MOD_STEPS_PER_SEC;
if (current_bri[i] < 0)
{
current_bri[i] = 0;