12 lines
265 B
C
12 lines
265 B
C
#pragma once
|
|
|
|
#ifdef CONFIG_ENABLE_DRY_SENSOR
|
|
int DrySetup(int powerGPIO);
|
|
int DryGetMeasure(int &dry);
|
|
bool DryIsConnected(){return true;}
|
|
#else
|
|
int DrySetup(int powerGPIO){return -1;}
|
|
int DryGetMeasure(int){return -1;}
|
|
bool DryIsConnected(){return false;}
|
|
#endif
|