32 lines
867 B
C++
Raw Normal View History

2023-03-15 18:43:38 +01:00
/*********************************************************************************/
/********** THIS FILE IS GENERATED BY TOUCHGFX DESIGNER, DO NOT MODIFY ***********/
/*********************************************************************************/
2023-05-05 14:50:10 +02:00
#include <gui_generated/containers/TemperatureBase.hpp>
2023-03-15 18:43:38 +01:00
#include <touchgfx/Color.hpp>
#include <texts/TextKeysAndLanguages.hpp>
2023-05-05 14:50:10 +02:00
TemperatureBase::TemperatureBase()
2023-03-15 18:43:38 +01:00
{
2023-05-05 14:50:10 +02:00
setWidth(60);
setHeight(60);
bg.setPosition(0, 0, 60, 60);
2023-03-15 18:43:38 +01:00
bg.setColor(touchgfx::Color::getColorFromRGB(0, 38, 255));
add(bg);
2023-05-05 14:50:10 +02:00
value.setPosition(0, 0, 60, 50);
2023-03-15 18:43:38 +01:00
value.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
value.setLinespacing(0);
value.setTypedText(touchgfx::TypedText(T___SINGLEUSE_20H3));
add(value);
}
2023-05-05 14:50:10 +02:00
TemperatureBase::~TemperatureBase()
2023-03-15 18:43:38 +01:00
{
}
2023-05-05 14:50:10 +02:00
void TemperatureBase::initialize()
2023-03-15 18:43:38 +01:00
{
}