ESP32-PaxCounter/src/hal/ttgov1.h

35 lines
925 B
C
Raw Normal View History

2018-11-25 16:35:36 +01:00
// clang-format off
#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
2018-03-21 21:53:42 +01:00
#define HAS_DISPLAY U8X8_SSD1306_128X64_NONAME_HW_I2C // OLED-Display on board
2018-04-03 23:42:43 +02:00
//#define DISPLAY_FLIP 1 // uncomment this for rotated display
#define HAS_LED (2) // white LED on board
#define LED_ACTIVE_LOW 1 // Onboard LED is active when pin is LOW
#define HAS_BUTTON (0) // button "PRG" on board
2018-03-20 21:38:41 +01:00
// Pins for I2C interface of OLED Display
#define MY_OLED_SDA (4)
#define MY_OLED_SCL (15)
#define MY_OLED_RST (16)
2018-03-20 21:38:41 +01: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 (14)
#define LORA_IRQ (26)
#define LORA_IO1 (33)
#define LORA_IO2 LMIC_UNUSED_PIN
2018-03-20 21:38:41 +01:00
#endif