ESP32-PaxCounter/src/hal/ttgofox.h

50 lines
1.4 KiB
C
Raw Normal View History

2019-01-18 22:19:40 +01:00
// clang-format off
2019-06-30 17:48:24 +02:00
// upload_speed 921600
// board esp32dev
2019-01-18 22:19:40 +01:00
#ifndef _TTGOFOX_H
#define _TTGOFOX_H
#include <stdint.h>
#define HAS_LORA 1 // comment out if device shall not send data via LoRa
#define CFG_sx1276_radio 1 // HPD13A LoRa SoC
2019-09-27 12:47:00 +02:00
#define HAS_DISPLAY 1
#define HAS_LED NOT_A_PIN // green on board LED is useless, is GPIO25, which switches power for Lora+Display
2019-03-24 20:14:32 +01:00
2019-05-18 13:10:22 +02:00
#define EXT_POWER_SW GPIO_NUM_25 // switches power for LoRa chip
#define EXT_POWER_ON 0
#define EXT_POWER_OFF 1
2019-03-23 11:02:47 +01:00
#define BAT_MEASURE_ADC ADC1_GPIO35_CHANNEL
#define BAT_VOLTAGE_DIVIDER 2 // voltage divider 100k/100k on board
2019-01-18 22:19:40 +01:00
#define HAS_BUTTON GPIO_NUM_36 // on board button (next to reset)
// Pins for I2C interface of OLED Display
#define MY_OLED_SDA (21)
#define MY_OLED_SCL (22)
2019-09-27 12:47:00 +02:00
#define MY_OLED_RST NOT_A_PIN
2019-01-18 22:19:40 +01:00
2019-02-09 13:02:38 +01:00
// Settings for on board DS3231 RTC chip
2019-01-19 17:52:46 +01:00
#define HAS_RTC MY_OLED_SDA, MY_OLED_SCL // SDA, SCL
2019-02-15 14:08:27 +01:00
#define RTC_INT GPIO_NUM_34 // timepulse with accuracy +/- 2*e-6 [microseconds] = 0,1728sec / day
// Settings for IF482 interface
2019-03-23 11:02:47 +01:00
#define HAS_IF482 9600, SERIAL_7E1, GPIO_NUM_12, GPIO_NUM_14 // IF482 serial port parameters
2019-02-09 13:02:38 +01:00
// Settings for DCF77 interface
2019-03-02 14:09:12 +01:00
//#define HAS_DCF77 GPIO_NUM_14
//#define DCF77_ACTIVE_LOW 1
2019-01-19 17:52:46 +01:00
2019-01-18 22:19:40 +01:00
// Pins for LORA chip SPI interface, reset line and interrupt lines
2019-05-18 13:10:22 +02:00
#define LORA_SCK (5)
#define LORA_CS (18)
#define LORA_MISO (19)
#define LORA_MOSI (27)
2019-01-21 17:49:58 +01:00
#define LORA_RST (23)
2019-01-18 22:19:40 +01:00
#define LORA_IRQ (26)
#define LORA_IO1 (33)
#define LORA_IO2 (32)
2019-03-20 22:14:02 +01:00
#endif