mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	Fix esp32_rmt_led_strip custom timing units (#5696)
This commit is contained in:
		| @@ -93,19 +93,19 @@ CONFIG_SCHEMA = cv.All( | |||||||
|             cv.Inclusive( |             cv.Inclusive( | ||||||
|                 CONF_BIT0_HIGH, |                 CONF_BIT0_HIGH, | ||||||
|                 "custom", |                 "custom", | ||||||
|             ): cv.positive_time_period_microseconds, |             ): cv.positive_time_period_nanoseconds, | ||||||
|             cv.Inclusive( |             cv.Inclusive( | ||||||
|                 CONF_BIT0_LOW, |                 CONF_BIT0_LOW, | ||||||
|                 "custom", |                 "custom", | ||||||
|             ): cv.positive_time_period_microseconds, |             ): cv.positive_time_period_nanoseconds, | ||||||
|             cv.Inclusive( |             cv.Inclusive( | ||||||
|                 CONF_BIT1_HIGH, |                 CONF_BIT1_HIGH, | ||||||
|                 "custom", |                 "custom", | ||||||
|             ): cv.positive_time_period_microseconds, |             ): cv.positive_time_period_nanoseconds, | ||||||
|             cv.Inclusive( |             cv.Inclusive( | ||||||
|                 CONF_BIT1_LOW, |                 CONF_BIT1_LOW, | ||||||
|                 "custom", |                 "custom", | ||||||
|             ): cv.positive_time_period_microseconds, |             ): cv.positive_time_period_nanoseconds, | ||||||
|         } |         } | ||||||
|     ), |     ), | ||||||
|     cv.has_exactly_one_key(CONF_CHIPSET, CONF_BIT0_HIGH), |     cv.has_exactly_one_key(CONF_CHIPSET, CONF_BIT0_HIGH), | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user