Domotique/WifiControlSensor/dry_sensor.h

12 lines
265 B
C
Raw Normal View History

2016-06-02 01:31:57 +02:00
#pragma once
#ifdef CONFIG_ENABLE_DRY_SENSOR
int DrySetup(int powerGPIO);
int DryGetMeasure(int &dry);
bool DryIsConnected(){return true;}
#else
2016-06-09 21:37:44 +02:00
int DrySetup(int powerGPIO){return -1;}
2016-06-02 01:31:57 +02:00
int DryGetMeasure(int){return -1;}
bool DryIsConnected(){return false;}
#endif