ESP32-PaxCounter/src/hal/lolin32lite.h

13 lines
297 B
C
Raw Normal View History

#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