1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-03 11:52:20 +01:00

Fix erroneous validation. Fixes OttoWinter/esphomelib#59

This commit is contained in:
Otto Winter
2018-06-05 22:32:34 +02:00
parent a0a615c335
commit 923a5990c7

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