ESP32-PaxCounter/src/hal/lolin32lite.h

16 lines
369 B
C
Raw Normal View History

2018-11-25 16:35:36 +01:00
// clang-format off
#ifndef _LOLINLITE_H
#define _LOLINLITE_H
#include <stdint.h>
2018-07-15 22:19:05 +02:00
// Hardware related definitions for lolin32lite (without LoRa shield)
#define HAS_LORA 0 // no LoRa module
2019-01-19 19:54:54 +01:00
#define CFG_sx1272_radio 1 // dummy
#define HAS_LED LED_BUILTIN // on board LED on GPIO5
#define LED_ACTIVE_LOW 1 // Onboard LED is active when pin is LOW
2018-07-15 20:17:54 +02:00
#endif