summaryrefslogtreecommitdiff
path: root/src/DisplayApp/Screens/Message.cpp
blob: 121e34b98622b6ffc07c1243a6e86805743e9c21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <cstdio>
#include <libs/date/includes/date/date.h>
#include <Components/DateTime/DateTimeController.h>
#include <Version.h>
#include "Message.h"

using namespace Pinetime::Applications::Screens;

void Message::Refresh(bool fullRefresh) {
  if(fullRefresh) {
    gfx.FillRectangle(0,0,240,240,0xffff);
    gfx.DrawString(120, 10, 0x5555, "COUCOU", &smallFont, false);
  }
}