Alex Mikhalev 8d24829f67 Squashed 'components/u8g2/' content from commit 45ac4e0e
git-subtree-dir: components/u8g2
git-subtree-split: 45ac4e0edc76c6bc3d808304fccb73c543535ded
2019-01-15 20:36:08 -08:00

33 lines
488 B
C

#include "u8g2.h"
#include <stdio.h>
u8g2_t u8g2;
int main(void)
{
u8g2_SetupBuffer_Utf8(&u8g2, U8G2_R0);
u8g2_InitDisplay(&u8g2);
u8g2_SetPowerSave(&u8g2, 0);
u8g2_SetFont(&u8g2, u8g2_font_6x13_tf);
u8g2_SetFontDirection(&u8g2, 0);
u8g2_FirstPage(&u8g2);
do
{
u8g2_DrawFilledEllipse(&u8g2, 30, 28, 23, 27, U8G2_DRAW_ALL);
u8g2_DrawStr(&u8g2, 50, 10, "Ellipse");
} while( u8g2_NextPage(&u8g2) );
utf8_show();
return 0;
}