weatherstation/firmware/config.h

12 lines
226 B
C
Raw Normal View History

2017-11-07 22:20:14 +01:00
#define DEBUG
#define SENSOR_TEMPERATURE 0
#define SENSOR_HUMIDITY 1
#define SENSOR_LIGHT 2
2017-11-12 21:37:55 +01:00
#define SENSOR_WINDSPEED 3
2017-11-07 22:20:14 +01:00
#define UPDATE_INTERVAL 4
2017-11-12 21:37:55 +01:00
#define STATUS_LED_PIN BUILTIN_LED
#define ANEMOMETER_PIN D4