From 811c13d7d1f04087ac4a8d670114724ebbe86dd8 Mon Sep 17 00:00:00 2001 From: Andrew Zaborowski Date: Wed, 3 Mar 2021 19:40:25 +0100 Subject: [PATCH] pins: Add three new boards (#1576) Add the Lolin32 Lite and TTGO T7 board names so that esphome can be built for those boards. There's nothing special about them. The espressif/arduino-esp32 and platformio/platform-espressif32 projects have both merged definitions for those boards recently. --- esphome/pins.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/esphome/pins.py b/esphome/pins.py index b6fde85250..2a154c4dbf 100644 --- a/esphome/pins.py +++ b/esphome/pins.py @@ -182,6 +182,7 @@ ESP32_BOARD_PINS = { 'iotbusio': {}, 'iotbusproteus': {}, 'lolin32': {'LED': 5}, + 'lolin32-lite': {'LED': 22}, 'lolin_d32': {'LED': 5, '_VBAT': 35}, 'lolin_d32_pro': {'LED': 5, '_VBAT': 35}, 'lopy': {'A1': 37, 'A2': 38, 'LED': 0, 'MISO': 37, 'MOSI': 22, 'SCK': 13, 'SCL': 13, @@ -239,6 +240,8 @@ ESP32_BOARD_PINS = { 'ttgo-t-beam': {'BUTTON': 39, 'LED': 14, 'MOSI': 27, 'SCK': 5, 'SS': 18}, 'ttgo-t-watch': {'BUTTON': 36, 'MISO': 2, 'MOSI': 15, 'SCK': 14, 'SS': 13}, 'ttgo-t1': {'LED': 22, 'MISO': 2, 'MOSI': 15, 'SCK': 14, 'SCL': 23, 'SS': 13}, + 'ttgo-t7-v13-mini32': {'LED': 22}, + 'ttgo-t7-v14-mini32': {'LED': 19}, 'turta_iot_node': {}, 'vintlabs-devkit-v1': {'LED': 2, 'PWM0': 12, 'PWM1': 13, 'PWM2': 14, 'PWM3': 15, 'PWM4': 16, 'PWM5': 17, 'PWM6': 18, 'PWM7': 19},