ESP32-PaxCounter/src/hal/lolin32lite.h

15 lines
318 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 CFG_sx1272_radio 1 // dummy
2018-07-15 20:17:54 +02:00
2018-11-04 13:22:03 +01:00
#define HAS_LED (5) // on board LED on GPIO5
2018-07-15 20:17:54 +02:00
#define LED_ACTIVE_LOW 1 // Onboard LED is active when pin is LOW
#endif