2018-11-25 16:35:36 +01:00
|
|
|
// clang-format off
|
2019-06-30 17:48:24 +02:00
|
|
|
// upload_speed 115200
|
|
|
|
// board ttgo-lora32-v1
|
2018-11-25 16:35:36 +01:00
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
#ifndef _TTGOV1_H
|
|
|
|
#define _TTGOV1_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2018-03-21 21:53:42 +01:00
|
|
|
// Hardware related definitions for TTGOv1 board
|
2018-03-20 21:38:41 +01:00
|
|
|
|
2018-08-11 19:12:04 +02:00
|
|
|
#define HAS_LORA 1 // comment out if device shall not send data via LoRa
|
2018-03-25 20:34:44 +02:00
|
|
|
#define CFG_sx1276_radio 1
|
|
|
|
|
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
|
2019-01-19 19:54:54 +01:00
|
|
|
#define HAS_LED LED_BUILTIN
|
2018-06-10 21:46:58 +02:00
|
|
|
#define LED_ACTIVE_LOW 1 // Onboard LED is active when pin is LOW
|
2019-01-19 19:54:54 +01:00
|
|
|
#define HAS_BUTTON KEY_BUILTIN
|
2018-03-20 21:38:41 +01:00
|
|
|
|
2019-12-25 23:07:34 +01:00
|
|
|
// enable only if you want to store a local paxcount table on the device
|
2021-10-31 14:47:43 +01:00
|
|
|
// #define HAS_SDCARD 1 // this board has an SD-card-reader/writer
|
2019-12-25 23:07:34 +01:00
|
|
|
// Pins for SD-card
|
|
|
|
#define SDCARD_CS (13)
|
|
|
|
#define SDCARD_MOSI (15)
|
|
|
|
#define SDCARD_MISO (2)
|
|
|
|
#define SDCARD_SCLK (14)
|
|
|
|
|
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 (4)
|
|
|
|
#define MY_DISPLAY_SCL (15)
|
|
|
|
#define MY_DISPLAY_RST (16)
|
2019-01-19 19:54:54 +01:00
|
|
|
|
2020-03-17 22:31:34 +01:00
|
|
|
// This board reports back the wrong I2C address, so we overwrite it here
|
2020-03-29 12:10:42 +02:00
|
|
|
#define MY_DISPLAY_ADDR 0x3C
|
2020-03-17 22:31:34 +01:00
|
|
|
|
2019-01-19 19:54:54 +01:00
|
|
|
// Pins for LORA chip SPI interface come from board file, we need some
|
|
|
|
// additional definitions for LMIC
|
2018-10-21 22:16:29 +02:00
|
|
|
#define LORA_IO1 (33)
|
2020-03-24 07:50:49 +01:00
|
|
|
#define LORA_IO2 (32) // ref.: https://www.thethingsnetwork.org/forum/t/big-esp32-sx127x-topic-part-3/18436
|
2018-03-20 21:38:41 +01:00
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
#endif
|