diff options
author | Mike Fiore <mfiore@multitech.com> | 2015-11-17 13:37:39 -0600 |
---|---|---|
committer | Mike Fiore <mfiore@multitech.com> | 2015-11-17 13:37:39 -0600 |
commit | 32194e901049ddd4f9d954720583363e05b762e2 (patch) | |
tree | 1167ed15709216db808784826d01c34311cb1bd9 /Layout | |
parent | a2dd1624ef3fec296578289268973b7c00eb1ad1 (diff) | |
download | mtdot-box-evb-factory-firmware-32194e901049ddd4f9d954720583363e05b762e2.tar.gz mtdot-box-evb-factory-firmware-32194e901049ddd4f9d954720583363e05b762e2.tar.bz2 mtdot-box-evb-factory-firmware-32194e901049ddd4f9d954720583363e05b762e2.zip |
add config layout, remove lots of logging
Diffstat (limited to 'Layout')
-rw-r--r-- | Layout/LayoutConfig.cpp | 23 | ||||
-rw-r--r-- | Layout/LayoutConfig.h | 20 |
2 files changed, 43 insertions, 0 deletions
diff --git a/Layout/LayoutConfig.cpp b/Layout/LayoutConfig.cpp new file mode 100644 index 0000000..dc28738 --- /dev/null +++ b/Layout/LayoutConfig.cpp @@ -0,0 +1,23 @@ +#include "LayoutConfig.h" + +LayoutConfig::LayoutConfig(DOGS102* lcd) + : Layout(lcd), + _lMode(0, 0, "Configuration"), + _lHelp1(0, 2, "Connect USB debug"), + _lHelp2(0, 3, "to PC at 115200"), + _lHelp3(0, 4, "baud to configure") +{} + +LayoutConfig::~LayoutConfig() {} + +void LayoutConfig::display() { + clear(); + startUpdate(); + + writeLabel(_lMode); + writeLabel(_lHelp1); + writeLabel(_lHelp2); + writeLabel(_lHelp3); + + endUpdate(); +} diff --git a/Layout/LayoutConfig.h b/Layout/LayoutConfig.h new file mode 100644 index 0000000..0fdba1c --- /dev/null +++ b/Layout/LayoutConfig.h @@ -0,0 +1,20 @@ +#ifndef __LAYOUTCONFIG_H__ +#define __LAYOUTCONFIG_H__ + +#include "Layout.h" + +class LayoutConfig : public Layout { + public: + LayoutConfig(DOGS102* lcd); + ~LayoutConfig(); + + void display(); + + private: + Label _lMode; + Label _lHelp1; + Label _lHelp2; + Label _lHelp3; +}; + +#endif |