49 lines
1.8 KiB
C
49 lines
1.8 KiB
C
// clang-format off
|
|
// upload_speed 921600
|
|
// board lolin32
|
|
|
|
#ifndef _LOLINLORA_H
|
|
#define _LOLINLORA_H
|
|
|
|
#include <stdint.h>
|
|
|
|
// Hardware related definitions for lolin32 with loraNode32 shield
|
|
// See https://github.com/hallard/LoLin32-Lora
|
|
|
|
// disable brownout detection (avoid unexpected reset on some boards)
|
|
#define DISABLE_BROWNOUT 1 // comment out if you want to keep brownout feature
|
|
|
|
#define HAS_DISPLAY 1 // OLED-Display on board
|
|
//#define MY_DISPLAY_FLIP 1 // uncomment this for rotated display
|
|
#define HAS_LED NOT_A_PIN // Led os on same pin as Lora SS pin, to avoid problems, we don't use it
|
|
#define LED_ACTIVE_LOW 1 // Onboard LED is active when pin is LOW
|
|
// Anyway shield is on over the LoLin32 board, so we won't be able to see this LED
|
|
#define RGB_LED_COUNT 1 // we have 1 LED
|
|
#define HAS_RGB_LED FastLED.addLeds<WS2812, GPIO_NUM_13, GRB>(leds, RGB_LED_COUNT);
|
|
#define HAS_BUTTON 15 // ESP32 GPIO15 (pin15) Button is on the LoraNode32 shield
|
|
#define BUTTON_PULLUP 1 // Button need pullup instead of default pulldown
|
|
|
|
#define HAS_LORA 1 // comment out if device shall not send data via LoRa
|
|
#define CFG_sx1276_radio 1 // RFM95 module
|
|
|
|
// Pins for LORA chip SPI interface, reset line and interrupt lines
|
|
#define LORA_SCK SCK
|
|
#define LORA_CS SS
|
|
#define LORA_MISO MISO
|
|
#define LORA_MOSI MOSI
|
|
#define LORA_RST (25)
|
|
#define LORA_IRQ (27)
|
|
#define LORA_IO1 (26)
|
|
#define LORA_IO2 (4)
|
|
|
|
// Pins for I2C interface of OLED Display
|
|
#define MY_DISPLAY_SDA SDA
|
|
#define MY_DISPLAY_SCL SCL
|
|
#define MY_DISPLAY_RST NOT_A_PIN
|
|
|
|
// I2C config for Microchip 24AA02E64 DEVEUI unique address
|
|
#define MCP_24AA02E64_I2C_ADDRESS 0x50 // I2C address for the 24AA02E64
|
|
#define MCP_24AA02E64_MAC_ADDRESS 0xF8 // Memory adress of unique deveui 64 bits
|
|
|
|
#endif
|