Some checks failed
Build and deploy Docs site to GitHub Pages / github-pages (push) Has been cancelled
PR Build Check / build (Heltec_v3_companion_radio_ble) (push) Has been cancelled
PR Build Check / build (Heltec_v3_repeater) (push) Has been cancelled
PR Build Check / build (Heltec_v3_room_server) (push) Has been cancelled
PR Build Check / build (LilyGo_Tlora_C6_repeater_) (push) Has been cancelled
PR Build Check / build (PicoW_repeater) (push) Has been cancelled
PR Build Check / build (RAK_4631_companion_radio_ble) (push) Has been cancelled
PR Build Check / build (RAK_4631_repeater) (push) Has been cancelled
PR Build Check / build (RAK_4631_room_server) (push) Has been cancelled
PR Build Check / build (wio-e5-mini_repeater) (push) Has been cancelled
- MeshCore-based Simple Sensor firmware - Heltec T114 without display - BME280 sensor support (temp/humidity/pressure) - Radio: 868.856018 MHz, SF7, BW62.5 kHz, CR4/7 - 2-byte path hash - PlatformIO project
28 lines
798 B
C
28 lines
798 B
C
// Need this file for ESP32-S3
|
|
// No need to modify this file, changes to pins imported from variant.h
|
|
// Most is similar to https://github.com/espressif/arduino-esp32/blob/master/variants/esp32s3/pins_arduino.h
|
|
|
|
#ifndef Pins_Arduino_h
|
|
#define Pins_Arduino_h
|
|
|
|
#include <stdint.h>
|
|
#include <variant.h>
|
|
|
|
#define USB_VID 0x303a
|
|
#define USB_PID 0x1001
|
|
|
|
// Serial
|
|
static const uint8_t TX = PIN_GPS_TX;
|
|
static const uint8_t RX = PIN_GPS_RX;
|
|
|
|
// Default SPI will be mapped to Radio
|
|
static const uint8_t SS = P_LORA_NSS;
|
|
static const uint8_t SCK = P_LORA_SCLK;
|
|
static const uint8_t MOSI = P_LORA_MISO;
|
|
static const uint8_t MISO = P_LORA_MOSI;
|
|
|
|
// The default Wire will be mapped to PMU and RTC
|
|
static const uint8_t SCL = PIN_BOARD_SCL;
|
|
static const uint8_t SDA = PIN_BOARD_SDA;
|
|
|
|
#endif /* Pins_Arduino_h */ |