2018-11-25 16:35:36 +01:00
|
|
|
// clang-format off
|
2019-06-30 17:48:24 +02:00
|
|
|
// upload_speed 921600
|
|
|
|
// board lolin32
|
2018-11-25 16:35:36 +01:00
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
#ifndef _LOLINLITELORA_H
|
|
|
|
#define _LOLINLITELORA_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2018-07-15 14:28:05 +02:00
|
|
|
// Hardware related definitions for lolin32 lite with loraNode32 shield
|
2018-03-28 01:30:47 +02:00
|
|
|
// See https://github.com/hallard/LoLin32-Lite-Lora
|
|
|
|
|
|
|
|
// disable brownout detection (avoid unexpected reset on some boards)
|
|
|
|
#define DISABLE_BROWNOUT 1 // comment out if you want to keep brownout feature
|
|
|
|
|
2019-09-27 12:47:00 +02:00
|
|
|
#define HAS_DISPLAY 1 // OLED-Display on board
|
2020-03-29 12:10:42 +02:00
|
|
|
//#define MY_DISPLAY_FLIP 1 // uncomment this for rotated display
|
2022-01-28 21:50:48 +01:00
|
|
|
#define HAS_LED 22 // ESP32 GPIO12 (pin22) On Board LED (set to NOT_A_PIN to disable)
|
2018-06-10 21:46:58 +02:00
|
|
|
#define LED_ACTIVE_LOW 1 // Onboard LED is active when pin is LOW
|
2022-10-31 16:56:48 +01:00
|
|
|
#define RGB_LED_COUNT 1 // we have 1 LED
|
|
|
|
#define HAS_RGB_LED FastLED.addLeds<WS2812, GPIO_NUM_0, GRB>(leds, RGB_LED_COUNT);
|
2018-06-10 21:46:58 +02:00
|
|
|
#define HAS_BUTTON 15 // ESP32 GPIO15 (pin15) Button is on the LoraNode32 shield
|
|
|
|
#define BUTTON_PULLUP 1 // Button need pullup instead of default pulldown
|
2018-03-28 01:30:47 +02:00
|
|
|
|
2018-07-14 20:07:33 +02:00
|
|
|
#define HAS_LORA 1 // comment out if device shall not send data via LoRa
|
2018-03-28 01:30:47 +02:00
|
|
|
#define CFG_sx1276_radio 1 // RFM95 module
|
|
|
|
|
2018-10-21 22:24:45 +02:00
|
|
|
// Pins for LORA chip SPI interface, reset line and interrupt lines
|
2020-01-01 16:32:27 +01:00
|
|
|
#define LORA_SCK SCK
|
|
|
|
#define LORA_CS SS
|
|
|
|
#define LORA_MISO MISO
|
|
|
|
#define LORA_MOSI MOSI
|
2018-10-21 22:16:29 +02:00
|
|
|
#define LORA_RST (25)
|
2018-11-20 15:02:37 +01:00
|
|
|
#define LORA_IRQ (27)
|
2018-10-21 22:16:29 +02:00
|
|
|
#define LORA_IO1 (26)
|
2020-01-01 16:15:07 +01:00
|
|
|
#define LORA_IO2 (4)
|
2018-03-28 01:30:47 +02:00
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
// Pins for I2C interface of OLED Display
|
2020-03-29 12:10:42 +02:00
|
|
|
#define MY_DISPLAY_SDA (12)
|
|
|
|
#define MY_DISPLAY_SCL (14)
|
|
|
|
#define MY_DISPLAY_RST NOT_A_PIN
|
2018-04-03 11:27:34 +02:00
|
|
|
|
|
|
|
// I2C config for Microchip 24AA02E64 DEVEUI unique address
|
2018-06-10 21:46:58 +02:00
|
|
|
#define MCP_24AA02E64_I2C_ADDRESS 0x50 // I2C address for the 24AA02E64
|
2018-04-03 11:27:34 +02:00
|
|
|
#define MCP_24AA02E64_MAC_ADDRESS 0xF8 // Memory adress of unique deveui 64 bits
|
2018-10-21 19:00:20 +02:00
|
|
|
|
|
|
|
#endif
|