1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-14 06:38:17 +00:00

Fix erroneous validation. Fixes OttoWinter/esphomelib#59

This commit is contained in:
Otto Winter 2018-06-05 22:32:34 +02:00
parent 625f14b9d4
commit 026f2f1895

View File

@ -11,7 +11,7 @@ ESP_PLATFORMS = [ESP_PLATFORM_ESP8266]
def valid_pwm_pin(value):
if value[CONF_NUMBER] >= 16:
if value[CONF_NUMBER] > 16:
raise ESPHomeYAMLError(u"ESP8266: Only pins 0-16 support PWM.")
return value