Phat Nguyen

Results 6 comments of Phat Nguyen

Thank fast response. I try to add `disp_drv.antialiasing = 0;` to init functon like bellow: ```c // lvgl static lv_color_t disp_buf1[GUI_HOR_RES*GUI_VER_RES/8]; static lv_disp_draw_buf_t buf; lv_init(); lv_disp_draw_buf_init(&buf, disp_buf1, NULL, GUI_HOR_RES*GUI_VER_RES); lv_disp_drv_init(&disp_drv);...

So, your test also drawn double of pixel when setting width = 1.

Can you share me the code init mono theme and LVGL configure for mono theme. Because I have configure `LV_COLOR_DEPTH = 1` but when init mono theme LVGL stuck.

`What does "LVGL stuck" mean exactly?` That is reason I comment the theme init. I try it and let you know result. Thank you very much!

> `What does "LVGL stuck" mean exactly?` > > That is reason I comment the theme init. I try it and let you know result. > > Thank you very...

It's very simple that round `float` or `double` value before add to JSON ```c double roundf_val(float input, int decimal) { int _pow = 1; for (int i = 0; i...