aboutsummaryrefslogtreecommitdiffstats
path: root/demos/modules/gdisp/gdisp_fonts_cyrillic/main.c
blob: dd39a5d59eca2135a34563ab7db139c39048656f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "gfx.h"

int main(void) {
	font_t font1;

    // Initialize uGFX and the underlying system
    gfxInit();

    // Get the fonts we want to use
	font1 = gdispOpenFont("Archangelsk Regular 12");

	// Demonstrate our other fonts
	gdispDrawString(10, 10, "привет мир", font1, Yellow);

	// Wait forever
    while(TRUE) {
    	gfxSleepMilliseconds(500);
    }   
}