WateringSystem/main.cpp
2025-04-01 09:07:03 +00:00

17 lines
214 B
C++

#include "pico/stdlib.h"
#include "Pump.h"
int main()
{
Pump* pump = new Pump();
while(true)
{
sleep_ms(20000);
pump->pumpMilliliters(100);
}
return 0;
}
float readSensor();