2018-10-21 19:00:20 +02:00
|
|
|
#ifndef _OCTOPUS_H
|
|
|
|
#define _OCTOPUS_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2018-10-06 20:55:17 +02:00
|
|
|
// Hardware related definitions for #IoT Octopus32 with the Adafruit LoRaWAN Wing
|
|
|
|
// You can use this configuration also with the Adafruit ESP32 Feather + the LoRaWAN Wing
|
|
|
|
// In this config we use the Adafruit OLED Wing which is only 128x32 pixel, need to find a smaller font
|
|
|
|
|
|
|
|
// disable brownout detection (avoid unexpected reset on some boards)
|
|
|
|
#define DISABLE_BROWNOUT 1 // comment out if you want to keep brownout feature
|
|
|
|
|
2018-11-18 15:50:57 +01:00
|
|
|
#define HAS_BME 0x76 // BME680 sensor on I2C bus; comment out if not present
|
|
|
|
|
2018-10-06 20:55:17 +02:00
|
|
|
#define HAS_LED 13 // ESP32 GPIO12 (pin22) On Board LED
|
|
|
|
#define LED_ACTIVE_LOW 1 // Onboard LED is active when pin is LOW
|
|
|
|
//#define HAS_RGB_LED 13 // ESP32 GPIO13 (pin13) On Board Shield WS2812B RGB LED
|
|
|
|
//#define HAS_BUTTON 15 // ESP32 GPIO15 (pin15) Button is on the LoraNode32 shield
|
|
|
|
//#define BUTTON_PULLUP 1 // Button need pullup instead of default pulldown
|
|
|
|
|
|
|
|
#define HAS_LORA 1 // comment out if device shall not send data via LoRa
|
|
|
|
#define CFG_sx1276_radio 1 // RFM95 module
|
|
|
|
|
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 (14)
|
|
|
|
#define LORA_MISO (19)
|
|
|
|
#define LORA_MOSI (18)
|
|
|
|
#define LORA_RST LMIC_UNUSED_PIN
|
|
|
|
#define LORA_IO0 (33)
|
|
|
|
#define LORA_IO1 (33)
|
|
|
|
#define LORA_IO2 LMIC_UNUSED_PIN
|
2018-10-21 19:00:20 +02:00
|
|
|
|
|
|
|
// Pins for I2C interface of OLED Display
|
|
|
|
#define HAS_DISPLAY U8X8_SSD1306_128X64_NONAME_HW_I2C // U8X8_SSD1306_128X32_UNIVISION_SW_I2C //
|
|
|
|
//#define DISPLAY_FLIP 1 // uncomment this for rotated display
|
|
|
|
#define MY_OLED_SDA (23)
|
|
|
|
#define MY_OLED_SCL (22)
|
|
|
|
#define MY_OLED_RST U8X8_PIN_NONE
|
|
|
|
|
|
|
|
#endif
|