14 lines
246 B
C++
14 lines
246 B
C++
/*
|
|
Main header file for the SmartGarden project
|
|
*/
|
|
|
|
void setup() {
|
|
Serial.begin(9600);
|
|
setupCapacitiveSoilMoistureSensor();
|
|
}
|
|
|
|
void loop() {
|
|
loopCapacitiveSoilMoistureSensor();
|
|
delay(1); // delay in between reads for stability
|
|
}
|