2018-11-25 16:35:36 +01:00
|
|
|
// clang-format off
|
2019-06-30 17:48:24 +02:00
|
|
|
// upload_speed 115200
|
|
|
|
// board esp32dev
|
2018-11-25 16:35:36 +01:00
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
#ifndef _GENERIC_H
|
|
|
|
#define _GENERIC_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2018-07-15 14:55:30 +02:00
|
|
|
// Hardware related definitions for generic ESP32 boards
|
2019-01-19 19:10:10 +01:00
|
|
|
// generic.h is kitchensink with all available options
|
2018-07-15 14:55:30 +02:00
|
|
|
|
|
|
|
#define HAS_LORA 1 // comment out if device shall not send data via LoRa or has no LoRa
|
2023-05-20 17:51:41 +02:00
|
|
|
//#define HAS_SPI 1 // comment out if device shall not send data via SPI
|
2018-09-11 16:15:39 +02:00
|
|
|
// pin definitions for SPI slave interface
|
2023-05-20 17:51:41 +02:00
|
|
|
//#define SPI_MOSI GPIO_NUM_23
|
|
|
|
//#define SPI_MISO GPIO_NUM_19
|
|
|
|
//#define SPI_SCLK GPIO_NUM_18
|
|
|
|
//#define SPI_CS GPIO_NUM_5
|
2018-07-15 14:56:26 +02:00
|
|
|
|
2019-12-25 23:07:34 +01:00
|
|
|
// enable only if you want to store a local paxcount table on the device
|
|
|
|
#define HAS_SDCARD 1 // this board has an SD-card-reader/writer
|
|
|
|
// Pins for SD-card
|
|
|
|
#define SDCARD_CS (13)
|
|
|
|
#define SDCARD_MOSI (15)
|
|
|
|
#define SDCARD_MISO (2)
|
|
|
|
#define SDCARD_SCLK (14)
|
|
|
|
|
2018-11-20 15:44:33 +01:00
|
|
|
// enable only if device has these sensors, otherwise comment these lines
|
2019-04-06 11:36:07 +02:00
|
|
|
// tutorial to connect BME sensor see here:
|
|
|
|
// https://sbamueller.wordpress.com/2019/02/26/paxcounter-mit-umweltsensor/
|
|
|
|
//
|
|
|
|
// in platformio.ini append
|
|
|
|
// lib_deps = <...> ${common.lib_deps_sensors}
|
|
|
|
// for loading necessary libraries
|
|
|
|
|
2018-11-22 23:37:53 +01:00
|
|
|
// BME680 sensor on I2C bus
|
2023-05-20 17:51:41 +02:00
|
|
|
//#define HAS_BME 1 // Enable BME sensors in general
|
|
|
|
//#define HAS_BME680 GPIO_NUM_21, GPIO_NUM_22 // SDA, SCL
|
|
|
|
//#define BME680_ADDR BME68X_I2C_ADDR_LOW // connect SDIO of BME680 to GND
|
2019-04-06 11:36:07 +02:00
|
|
|
|
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-04-06 11:36:07 +02:00
|
|
|
//#define BME280_ADDR 0x76 // change to 0x77 depending on your wiring
|
2018-11-25 16:05:30 +01:00
|
|
|
|
2019-12-08 12:58:12 +01:00
|
|
|
// BMP180 sensor on I2C bus
|
|
|
|
//#define HAS_BMP180
|
|
|
|
//#define BMP180_ADDR 0x77
|
|
|
|
|
2020-02-25 22:18:20 +01:00
|
|
|
// SDS011 dust sensor settings
|
2023-05-20 17:51:41 +02:00
|
|
|
//#define HAS_SDS011 1 // use SDS011
|
2020-02-25 22:18:20 +01:00
|
|
|
// used pins on the ESP-side:
|
2023-05-20 17:51:41 +02:00
|
|
|
//#define SDS_TX 19 // connect to RX on the SDS011
|
|
|
|
//#define SDS_RX 23 // connect to TX on the SDS011
|
2020-02-25 22:18:20 +01:00
|
|
|
|
2020-11-02 18:44:06 +01:00
|
|
|
// up to three user defined sensors (if connected)
|
|
|
|
//#define HAS_SENSOR_1 1 // comment out if device has user defined sensor #1
|
|
|
|
//#define HAS_SENSOR_2 1 // comment out if device has user defined sensor #2
|
|
|
|
//#define HAS_SENSOR_3 1 // comment out if device has user defined sensor #3
|
2018-11-20 15:02:37 +01:00
|
|
|
|
2018-07-15 14:55:30 +02:00
|
|
|
#define CFG_sx1276_radio 1 // select LoRa chip
|
|
|
|
//#define CFG_sx1272_radio 1 // select LoRa chip
|
2022-11-02 13:15:15 +01:00
|
|
|
//#define BOARD_HAS_PSRAM // use if board has external SPIRAM, note: this will reduce IRAM0 by 64KB for SPIRAM cache
|
2018-07-21 14:17:25 +02:00
|
|
|
#define DISABLE_BROWNOUT 1 // comment out if you want to keep brownout feature
|
2018-07-15 14:55:30 +02:00
|
|
|
|
2023-05-20 17:51:41 +02:00
|
|
|
//#define HAS_DISPLAY 1
|
2020-03-29 12:10:42 +02:00
|
|
|
//#define MY_DISPLAY_FLIP 1 // use if display is rotated
|
2019-03-23 11:02:47 +01:00
|
|
|
#define BAT_MEASURE_ADC ADC1_GPIO35_CHANNEL // battery probe GPIO pin -> ADC1_CHANNEL_7
|
|
|
|
#define BAT_VOLTAGE_DIVIDER 2 // voltage divider 100k/100k on board
|
2018-07-15 14:55:30 +02:00
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
#define HAS_LED (21) // on board LED
|
|
|
|
#define HAS_BUTTON (39) // on board button
|
2023-05-20 17:51:41 +02:00
|
|
|
//#define RGB_LED_COUNT 1 // we have 1 LED
|
|
|
|
//#define HAS_RGB_LED FastLED.addLeds<WS2812, GPIO_NUM_0, GRB>(leds, RGB_LED_COUNT);
|
2018-08-01 08:53:05 +02:00
|
|
|
|
2019-02-09 16:10:21 +01:00
|
|
|
// GPS settings
|
2023-05-20 17:51:41 +02:00
|
|
|
//#define HAS_GPS 1 // use on board GPS
|
|
|
|
//#define GPS_SERIAL 9600, SERIAL_8N1, GPIO_NUM_12, GPIO_NUM_15 // UBlox NEO 6M RX, TX
|
|
|
|
//#define GPS_INT GPIO_NUM_13 // 30ns accurary timepulse, to be external wired on pcb: NEO 6M Pin#3 -> GPIO13
|
2018-07-15 14:55:30 +02:00
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
// Pins for I2C interface of OLED Display
|
2023-05-20 17:51:41 +02:00
|
|
|
//#define MY_DISPLAY_SDA (4)
|
|
|
|
//#define MY_DISPLAY_SCL (15)
|
|
|
|
//#define MY_DISPLAY_RST (16)
|
2018-10-21 19:00:20 +02:00
|
|
|
|
2019-02-09 16:10:21 +01:00
|
|
|
// Settings for on board DS3231 RTC chip
|
2023-05-20 17:51:41 +02:00
|
|
|
//#define HAS_RTC MY_DISPLAY_SDA, MY_DISPLAY_SCL // SDA, SCL
|
|
|
|
//#define RTC_INT GPIO_NUM_34 // timepulse with accuracy +/- 2*e-6 [microseconds] = 0,1728sec / day
|
2019-01-28 23:59:52 +01:00
|
|
|
|
|
|
|
// Settings for IF482 interface
|
2019-02-09 16:10:21 +01:00
|
|
|
//#define HAS_IF482 9600, SERIAL_7E1, GPIO_NUM_12, GPIO_NUM_14 // IF482 serial port parameters
|
2019-01-19 19:10:10 +01:00
|
|
|
|
2019-02-03 21:19:08 +01:00
|
|
|
// Settings for DCF77 interface
|
2019-03-31 15:32:22 +02:00
|
|
|
//#define HAS_DCF77 GPIO_NUM_1
|
|
|
|
//#define DCF77_ACTIVE_LOW 1
|
2019-02-03 21:19:08 +01:00
|
|
|
|
2018-10-21 22:24:45 +02:00
|
|
|
// Pins for LORA chip SPI interface, reset line and interrupt lines
|
2018-10-21 22:16:29 +02:00
|
|
|
#define LORA_SCK (5)
|
|
|
|
#define LORA_CS (18)
|
|
|
|
#define LORA_MISO (19)
|
|
|
|
#define LORA_MOSI (27)
|
|
|
|
#define LORA_RST (14)
|
2018-11-20 15:02:37 +01:00
|
|
|
#define LORA_IRQ (26)
|
2018-10-21 22:16:29 +02:00
|
|
|
#define LORA_IO1 (33)
|
|
|
|
#define LORA_IO2 LMIC_UNUSED_PIN
|
2018-09-20 13:23:22 +02:00
|
|
|
|
2020-02-25 15:46:13 +01:00
|
|
|
#endif
|