1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-18 17:53:47 +01:00

Dont validate baud_rate for sim800l platform (#2945)

This commit is contained in:
Jesse Hills
2022-01-04 22:16:40 +13:00
committed by GitHub
parent b601560e81
commit 3df0fee3de

View File

@@ -41,7 +41,7 @@ CONFIG_SCHEMA = cv.All(
.extend(uart.UART_DEVICE_SCHEMA)
)
FINAL_VALIDATE_SCHEMA = uart.final_validate_device_schema(
"sim800l", baud_rate=9600, require_tx=True, require_rx=True
"sim800l", require_tx=True, require_rx=True
)