Compare commits

..

No commits in common. "6b2f260153b8f87c6e803fc2e66c124b701d7b72" and "e23a21e25ff09bb5e4928d534815f77f0b2b744c" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ void pwm_set_state(int id, int state)
int pwm_value = pwm_values[id];
ESPMega_analogWrite(pwm_pins[id], state * (int)(pwm_linear_scaling_m[id] * pwm_value + pwm_linear_scaling_c[id]));
if (lcd_current_page == 3)
panel.writeNum("j" + String(id) + ".ppic", pwm_states[id] ? 33 : 48);
panel.writeNum("j" + String(id) + ".pco", state ? 47829 : 12710);
else if (lcd_current_page == 5 && id == lcd_pwmAdj_id)
panel.writeStr("pwm_state.txt", pwm_states[lcd_pwmAdj_id] ? "ON" : "OFF");
publish_pwm_state(id);