62 lines
1.3 KiB
C++
62 lines
1.3 KiB
C++
#include "GUI.h"
|
|
|
|
GUI Display;
|
|
|
|
void GUI::connected(bool wifi = false, bool mqtt = false)
|
|
{
|
|
status("Wifi: %s Mqtt: %s", (wifi ? "no" : "yes"), (wifi ? "no" : "yes"));
|
|
}
|
|
|
|
void GUI::close(const char *mac, const char *id)
|
|
{
|
|
Serial.printf("%d Close | MAC: %s, ID: %-50s\n", xPortGetCoreID(), mac, id);
|
|
status("C: %s", id);
|
|
}
|
|
|
|
void GUI::left(const char *mac, const char *id)
|
|
{
|
|
Serial.printf("%d Left | MAC: %s, ID: %-50s\n", xPortGetCoreID(), mac, id);
|
|
status("L: %s", id);
|
|
}
|
|
|
|
void GUI::status(const char *format, ...)
|
|
{
|
|
#ifdef M5STICK
|
|
sprite.fillSprite(TFT_BLACK);
|
|
sprite.setTextDatum(MC_DATUM);
|
|
|
|
char *message;
|
|
va_list args;
|
|
va_start(args, format);
|
|
vasprintf(&message, format, args);
|
|
va_end(args);
|
|
#ifdef PLUS
|
|
sprite.drawString(message, sprite.width() / 2, sprite.height() / 2, 4);
|
|
#else
|
|
sprite.drawString(message, sprite.width() / 2, sprite.height() / 2, 1);
|
|
#endif
|
|
free(message);
|
|
dirty = true;
|
|
#endif
|
|
}
|
|
|
|
void GUI::update()
|
|
{
|
|
#ifdef M5STICK
|
|
if (!init)
|
|
{
|
|
M5.begin(true, true, false);
|
|
M5.Lcd.setRotation(3);
|
|
sprite.createSprite(M5.Lcd.width(), M5.Lcd.height());
|
|
sprite.setSwapBytes(true);
|
|
init = true;
|
|
}
|
|
if (dirty)
|
|
{
|
|
sprite.pushSprite(0, 0);
|
|
M5.Axp.ScreenBreath(12);
|
|
dirty = false;
|
|
}
|
|
#endif
|
|
}
|