-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
22d7870
commit 1929ec4
Showing
13 changed files
with
83 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
/* Hydruino: Simple automation controller for hydroponic grow systems. | ||
Copyright (C) 2022-2023 NachtRaveVL <[email protected]> | ||
Hydruino Full UI | ||
Hydruino Full/RW UI | ||
*/ | ||
|
||
#include "Hydruino.h" | ||
#include "HydruinoUI.h" | ||
|
||
bool HydruinoFullUI::begin() | ||
{ | ||
return false; | ||
} | ||
|
||
void HydruinoFullUI::setNeedsLayout() | ||
{ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
/* Hydruino: Simple automation controller for hydroponic grow systems. | ||
Copyright (C) 2022-2023 NachtRaveVL <[email protected]> | ||
Hydruino Full UI | ||
Hydruino Full/RW UI | ||
*/ | ||
|
||
#include <Hydruino.h> | ||
#ifdef HYDRO_USE_GUI | ||
#ifndef HydroUI_H | ||
#define HydroUI_H | ||
|
||
class HydruinoFullUI; | ||
typedef HydruinoFullUI HydruinoUI; | ||
|
||
#include "Hydruino.h" | ||
#include "..\shared\HydruinoUI.h" | ||
|
||
class HydruinoFullUI : HydruinoUIInterface { | ||
class HydruinoFullUI : public HydruinoBaseUI { | ||
public: | ||
virtual bool begin() override; | ||
|
||
virtual void setNeedsLayout() override; | ||
|
||
protected: | ||
}; | ||
|
||
#endif // /ifndef HydroUI_H | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
/* Hydruino: Simple automation controller for hydroponic grow systems. | ||
Copyright (C) 2022-2023 NachtRaveVL <[email protected]> | ||
Hydruino Minimal UI | ||
Hydruino Minimal/RO UI | ||
*/ | ||
|
||
#include "Hydruino.h" | ||
#include "HydruinoUI.h" | ||
|
||
bool HydruinoMinUI::begin() | ||
{ | ||
return false; | ||
} | ||
|
||
void HydruinoMinUI::setNeedsLayout() | ||
{ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
/* Hydruino: Simple automation controller for hydroponic grow systems. | ||
Copyright (C) 2022-2023 NachtRaveVL <[email protected]> | ||
Hydruino Minimal UI | ||
Hydruino Minimal/RO UI | ||
*/ | ||
|
||
#include <Hydruino.h> | ||
#ifdef HYDRO_USE_GUI | ||
#ifndef HydroUI_H | ||
#define HydroUI_H | ||
|
||
class HydruinoMinUI; | ||
typedef HydruinoMinUI HydruinoUI; | ||
|
||
#include "Hydruino.h" | ||
#include "..\shared\HydruinoUI.h" | ||
|
||
class HydruinoMinUI : HydruinoUIInterface { | ||
class HydruinoMinUI : public HydruinoBaseUI { | ||
public: | ||
virtual bool begin() override; | ||
|
||
virtual void setNeedsLayout() override; | ||
|
||
protected: | ||
}; | ||
|
||
#endif // /ifndef HydroUI_H | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* Hydruino: Simple automation controller for hydroponic grow systems. | ||
Copyright (C) 2022-2023 NachtRaveVL <[email protected]> | ||
Hydruino Base UI | ||
*/ | ||
|
||
#include "Hydruino.h" | ||
#include "HydruinoUI.h" | ||
|
||
bool HydruinoBaseUI::begin() | ||
{ | ||
return false; | ||
} | ||
|
||
void HydruinoBaseUI::setNeedsLayout() | ||
{ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* Hydruino: Simple automation controller for hydroponic grow systems. | ||
Copyright (C) 2022-2023 NachtRaveVL <[email protected]> | ||
Hydruino Base UI | ||
*/ | ||
|
||
#include <Hydruino.h> | ||
#ifdef HYDRO_USE_GUI | ||
#ifndef HydroBaseUI_H | ||
#define HydroBaseUI_H | ||
|
||
class HydruinoBaseUI : public HydoUIInterface { | ||
public: | ||
virtual bool begin() override; | ||
|
||
virtual void setNeedsLayout() override; | ||
|
||
protected: | ||
}; | ||
|
||
#endif // /ifndef HydroBaseUI_H | ||
#endif |