-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
dc83475
commit 350835f
Showing
13 changed files
with
85 additions
and
59 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 @@ | ||
/* Helioduino: Simple automation controller for solar tracking systems. | ||
Copyright (C) 2023 NachtRaveVL <[email protected]> | ||
Helioduino Full UI | ||
Helioduino Full/RW UI | ||
*/ | ||
|
||
#include "Helioduino.h" | ||
#include "HelioduinoUI.h" | ||
|
||
bool HelioFullUI::begin() | ||
{ | ||
return false; | ||
} | ||
|
||
void HelioFullUI::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 @@ | ||
/* Helioduino: Simple automation controller for solar tracking systems. | ||
Copyright (C) 2023 NachtRaveVL <[email protected]> | ||
Helioduino Full UI | ||
Helioduino Full/RW UI | ||
*/ | ||
|
||
class HelioFullUI; | ||
#include <Helioduino.h> | ||
#ifdef HELIO_USE_GUI | ||
#ifndef HelioUI_H | ||
#define HelioUI_H | ||
|
||
#include "Helioduino.h" | ||
class HelioduinoFullUI; | ||
typedef HelioduinoFullUI HydruinoUI; | ||
|
||
class HelioFullUI : HelioduinoUIInterface { | ||
public: | ||
virtual bool begin() override; | ||
|
||
virtual void setNeedsLayout() override; | ||
#include "..\shared\HelioduinoUI.h" | ||
|
||
protected: | ||
class HelioduinoFullUI : public HelioduinoBaseUI { | ||
public: | ||
}; | ||
|
||
#endif // /ifndef HelioUI_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 @@ | ||
/* Helioduino: Simple automation controller for solar tracking systems. | ||
Copyright (C) 2023 NachtRaveVL <[email protected]> | ||
Helioduino Minimal UI | ||
Helioduino Minimal/RO UI | ||
*/ | ||
|
||
#include "Helioduino.h" | ||
#include "HelioduinoUI.h" | ||
|
||
bool HelioMinUI::begin() | ||
{ | ||
return false; | ||
} | ||
|
||
void HelioMinUI::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 @@ | ||
/* Helioduino: Simple automation controller for solar tracking systems. | ||
Copyright (C) 2023 NachtRaveVL <[email protected]> | ||
Helioduino Minimal UI | ||
Helioduino Minimal/RO UI | ||
*/ | ||
|
||
class HelioMinUI; | ||
#include <Helioduino.h> | ||
#ifdef HELIO_USE_GUI | ||
#ifndef HelioUI_H | ||
#define HelioUI_H | ||
|
||
#include "Helioduino.h" | ||
class HelioduinoMinUI; | ||
typedef HelioduinoMinUI HydruinoUI; | ||
|
||
class HelioMinUI : HelioduinoUIInterface { | ||
public: | ||
virtual bool begin() override; | ||
|
||
virtual void setNeedsLayout() override; | ||
#include "..\shared\HelioduinoUI.h" | ||
|
||
protected: | ||
class HelioduinoMinUI : public HelioduinoBaseUI { | ||
public: | ||
}; | ||
|
||
#endif // /ifndef HelioUI_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 @@ | ||
/* Helioduino: Simple automation controller for solar tracking systems. | ||
Copyright (C) 2023 NachtRaveVL <[email protected]> | ||
Helioduino Base UI | ||
*/ | ||
|
||
#include "Helioduino.h" | ||
#include "HelioduinoUI.h" | ||
|
||
bool HelioduinoBaseUI::begin() | ||
{ | ||
return false; | ||
} | ||
|
||
void HelioduinoBaseUI::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 @@ | ||
/* Helioduino: Simple automation controller for solar tracking systems. | ||
Copyright (C) 2023 NachtRaveVL <[email protected]> | ||
Helioduino Base UI | ||
*/ | ||
|
||
#include <Helioduino.h> | ||
#ifdef HELIO_USE_GUI | ||
#ifndef HelioBaseUI_H | ||
#define HelioBaseUI_H | ||
|
||
class HelioduinoBaseUI : public HelioUIInterface { | ||
public: | ||
virtual bool begin() override; | ||
|
||
virtual void setNeedsLayout() override; | ||
|
||
protected: | ||
}; | ||
|
||
#endif // /ifndef HelioBaseUI_H | ||
#endif |