ESP32-PaxCounter/src/hal/ecopower.h

55 lines
1.8 KiB
C
Raw Normal View History

2019-03-23 11:03:04 +01:00
// clang-format off
#ifndef _GENERIC_H
#define _GENERIC_H
#include <stdint.h>
#define HAS_LORA 1 // comment out if device shall not send data via LoRa or has no LoRa
#define CFG_sx1276_radio 1 // select LoRa chip
//#define DISABLE_BROWNOUT 1 // comment out if you want to keep brownout feature
#define HAS_DISPLAY U8X8_SSD1306_128X64_NONAME_HW_I2C
//#define DISPLAY_FLIP 1 // use if display is rotated
#define BAT_MEASURE_ADC ADC1_GPIO35_CHANNEL // battery probe GPIO pin -> ADC1_CHANNEL_7
#define BAT_VOLTAGE_DIVIDER ((82.0+220.0)/82.0) // 82k + 220k 1%
#define BAT_MEASURE_EN EXT_POWER_SW // Turn power on for messurement
#define EXT_POWER_SW 15 // Switch VDD on pin JP10
#define EXT_POWER_ON 0
#define EXT_POWER_OFF 1
2019-03-24 01:05:13 +01:00
#define HAS_LED (2) // on board green LED
2019-03-24 16:22:12 +01:00
#define HAS_TWO_LED (12) // on board red LED
2019-03-23 15:06:05 +01:00
//#define HAS_BUTTON (0) // on board button -> don't use, is same as RTC_INT!
2019-03-23 11:03:04 +01:00
// Pins for I2C interface of OLED Display
#define MY_OLED_SDA SDA
#define MY_OLED_SCL SCL
2019-03-23 11:03:04 +01:00
#define MY_OLED_RST U8X8_PIN_NONE
// Settings for on board DS3231 RTC chip
2019-03-23 15:06:05 +01:00
// note: to use RTC_INT, capacitor 100nF next to red LED must be removed to sharpen interrupt signal slope
// and setting EXT_POWER_ON is needed (this is done in main.cpp)
2019-03-23 11:03:04 +01:00
#define HAS_RTC MY_OLED_SDA, MY_OLED_SCL // SDA, SCL
2019-03-23 15:06:05 +01:00
#define RTC_INT GPIO_NUM_0 //
2019-03-23 11:03:04 +01:00
// Settings for IF482 interface
#define HAS_IF482 9600, SERIAL_7E1, GPIO_NUM_3, GPIO_NUM_1 // RX, TX
2019-03-23 11:03:04 +01:00
// Settings for DCF77 interface
//#define HAS_DCF77 GPIO_NUM_14 // JP8 #13
//#define DCF77_ACTIVE_LOW 1
// Pins for LORA chip SPI interface, reset line and interrupt lines
#define LORA_SCK SCK
#define LORA_CS SS
#define LORA_MISO MISO
#define LORA_MOSI MOSI
2019-03-23 11:03:04 +01:00
#define LORA_RST (17)
#define LORA_IRQ (16)
2019-03-23 15:06:05 +01:00
#define LORA_IO1 (14) // JP8 #13 to be external wired
2019-03-23 11:03:04 +01:00
#define LORA_IO2 LMIC_UNUSED_PIN
#endif