hal/arduino/HalMultiSensor/HalConfiguration.h

28 lines
826 B
C
Raw Normal View History

#ifndef HALCONFIGURATION_H
#define HALCONFIGURATION_H
#define ENABLE_DEBUG // comment out to disable debug
#define TIMER_MILLISECOND 60*1000 // poling in minutes
// POWER CONSUMPTION SENSOR
#define POWERCON_ENABLED // comment out to disable sensor
#define POWERCON_SENSOR SensorBH1750()
2016-02-24 15:31:51 +01:00
#define POWERCON_PROTOCOL ProtocolOregon(118)
#define POWER_TIMER_MULTIPLIER 1
// TEMPERATURE SENSOR
#define TEMPERATURE_ENABLED // comment out to disable sensor
#define TEMPERATURE_SENSOR SensorDHT11(5)
2016-02-24 15:31:51 +01:00
#define TEMPERATURE_PROTOCOL ProtocolOregon(100)
#define TEMPERATURE_TIMER_MULTIPLIER 1
// LIGHT SENSOR
2016-02-24 15:31:51 +01:00
//#define LIGHT_ENABLED // comment out to disable sensor
#define LIGHT_SENSOR SensorDH1750()
2016-02-24 15:31:51 +01:00
#define LIGHT_PROTOCOL ?
#define LIGHT_TIMER_MULTIPLIER 1
2016-02-24 21:51:16 +01:00
#endif // HALCONFIGURATION_H