arduino-esp32/variants/esp32_s3r8n16/pins_arduino.h
Lucas Saavedra Vaz 6bfcd6d9a9
refactor(style): Change some style options (#9526)
* refactor(style): Change some style options

* refactor(style): Apply style changes
2024-04-19 18:16:55 +03:00

23 lines
652 B
C

#ifndef Pins_Arduino_h
#define Pins_Arduino_h
#include <stdint.h>
#define USB_VID 0x303a
#define USB_PID 0x1001
#define USB_MANUFACTURER "4D Systems Pty Ltd"
#define USB_PRODUCT "4D Systems gen4-ESP32 16MB Modules (ESP32-S3R8n16)"
//#define USB_CLASS 2
static const uint8_t TX = 43;
static const uint8_t RX = 44;
static const uint8_t SDA = 17;
static const uint8_t SCL = 18;
static const uint8_t SS = -1; // Modified elsewhere
static const uint8_t MOSI = -1; // Modified elsewhere
static const uint8_t MISO = -1; // Modified elsewhere
static const uint8_t SCK = -1; // Modified elsewhere
#endif /* Pins_Arduino_h */