Fixes and improvements for PWM pins (#13383)

This commit is contained in:
Scott Lahteine 2019-03-13 06:51:15 -05:00 committed by GitHub
parent 87162658c4
commit f89b375fb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 196 additions and 193 deletions

View file

@ -57,7 +57,7 @@
SERIAL_ECHOLNPGM("Case light: off");
}
else {
if (!USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) SERIAL_ECHOLNPGM("Case light: on");
if (!PWM_PIN(CASE_LIGHT_PIN)) SERIAL_ECHOLNPGM("Case light: on");
else SERIAL_ECHOLNPAIR("Case light: ", case_light_brightness);
}
}