Skip to content
Snippets Groups Projects
Commit b9bd432b authored by Toni Ruoss's avatar Toni Ruoss
Browse files

Uebung_6_angefangen

parent 866f7543
No related branches found
No related tags found
No related merge requests found
// Flowerpot.h
#ifndef FLOWERPOT_H
#define FLOWERPOT_H
class Flowerpot
{
public:
MoistureSensor(int panelMeterPin);
void watering();
int getSoilMoisture();
private:
void writeToPanel();
int soilMoisture{10};
int threshold;
int panelMeterPin;
};
#endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment