From c63d746a069103ccb9f6afd35fa5a21e73f1340a Mon Sep 17 00:00:00 2001 From: timkoers Date: Mon, 18 Jun 2018 17:26:22 +0200 Subject: [PATCH] Added SPI bus pins (#1454) Added SPI bus pins and tested them as well --- variants/esp32-gateway/pins_arduino.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/variants/esp32-gateway/pins_arduino.h b/variants/esp32-gateway/pins_arduino.h index a171927dd..d4185f03d 100644 --- a/variants/esp32-gateway/pins_arduino.h +++ b/variants/esp32-gateway/pins_arduino.h @@ -20,6 +20,11 @@ static const uint8_t KEY_BUILTIN = 34; static const uint8_t SCL = 16; // This is pin 11 static const uint8_t SDA = 17; // This is pin 12 +static const uint8_t SS = 5; +static const uint8_t MOSI = 23; +static const uint8_t MISO = 19; +static const uint8_t SCK = 18; + static const uint8_t TX = 1; static const uint8_t RX = 3; -- GitLab