ESP32-PaxCounter/src/hal/ttgov21new.h

41 lines
1.2 KiB
C
Raw Normal View History

2018-11-25 16:35:36 +01:00
// clang-format off
#ifndef _TTGOV21NEW_H
#define _TTGOV21NEW_H
#include <stdint.h>
2018-09-17 17:23:02 +02:00
/* Hardware related definitions for TTGO V2.1 Board
// ATTENTION: check your board version!
// This settings are for boards labeled v1.6 on pcb, NOT for v1.5 or older
*/
#define HAS_LORA 1 // comment out if device shall not send data via LoRa
#define CFG_sx1276_radio 1 // HPD13A LoRa SoC
2019-03-08 18:13:51 +01:00
// enable only if device has these sensors, otherwise comment these lines
2019-03-13 21:15:28 +01:00
// BME280 sensor on I2C bus
//#define HAS_BME 1 // Enable BME sensors in general
//#define HAS_BME280 GPIO_NUM_21, GPIO_NUM_22 // SDA, SCL
2019-03-08 18:13:51 +01:00
2018-09-17 17:23:02 +02:00
#define HAS_DISPLAY U8X8_SSD1306_128X64_NONAME_HW_I2C
#define HAS_LED (25) // green on board LED
2019-01-20 13:18:23 +01:00
#define HAS_BATTERY_PROBE ADC1_GPIO35_CHANNEL // battery probe GPIO pin -> ADC1_CHANNEL_7
2018-09-17 17:23:02 +02:00
#define BATT_FACTOR 2 // voltage divider 100k/100k on board
// Pins for I2C interface of OLED Display
#define MY_OLED_SDA (21)
#define MY_OLED_SCL (22)
#define MY_OLED_RST U8X8_PIN_NONE
2018-09-17 17:23:02 +02:00
2018-10-21 22:24:45 +02:00
// Pins for LORA chip SPI interface, reset line and interrupt lines
#define LORA_SCK (5)
#define LORA_CS (18)
#define LORA_MISO (19)
#define LORA_MOSI (27)
#define LORA_RST (23)
#define LORA_IRQ (26)
#define LORA_IO1 (33)
#define LORA_IO2 (32)
2018-09-17 17:23:02 +02:00
#endif