This commit is contained in:
音游玩的人 2023-07-30 14:28:23 +08:00 committed by GitHub
parent 583c3584ae
commit c855b8c888
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,10 +9,6 @@
* 128 * 32 128 * 64
*
WouoUI v2.2
*
WouoUI v2
* 使线
@ -267,13 +263,13 @@ M_SELECT setting_menu[]
M_SELECT about_menu[]
{
{"[ WouoUI ]"},
{"- Version: v2.2"},
{"- Version: v2.3"},
{"- Board: STM32F103"},
{"- Ram: 20k"},
{"- Flash: 64k"},
{"- Freq: 72Mhz"},
{"- Creator: RQNG"},
{"- Billi UID: 9182439"},
{"- Bili UID: 9182439"},
};
/************************************* 图片内容 *************************************/
@ -400,7 +396,7 @@ struct
#define LIST_LINE_H 16 //列表单行高度
#define LIST_TEXT_S 4 //列表每行文字的上边距,左边距和右边距,下边距由它和字体高度和行高度决定
#define LIST_BAR_W 5 //列表进度条宽度需要是奇数因为正中间有1像素宽度的线
#define LIST_BOX_R 0.5 //列表选择框圆角
#define LIST_BOX_R 0.5f //列表选择框圆角
/*
//超窄行高度测试
@ -409,7 +405,7 @@ struct
#define LIST_LINE_H 7 //列表单行高度
#define LIST_TEXT_S 1 //列表每行文字的上边距,左边距和右边距,下边距由它和字体高度和行高度决定
#define LIST_BAR_W 7 //列表进度条宽度需要是奇数因为正中间有1像素宽度的线
#define LIST_BOX_R 0.5 //列表选择框圆角
#define LIST_BOX_R 0.5f //列表选择框圆角
*/
struct
{
@ -893,8 +889,8 @@ void animation(float *a, float *a_trg, uint8_t n)
{
if (*a != *a_trg)
{
if (fabs(*a - *a_trg) < 0.15) *a = *a_trg;
else *a += (*a_trg - *a) / (ui.param[n] / 10.0);
if (fabs(*a - *a_trg) < 0.15f) *a = *a_trg;
else *a += (*a_trg - *a) / (ui.param[n] / 10.0f);
}
}
@ -1111,7 +1107,7 @@ void volt_show()
u8g2.setFontDirection(0);
u8g2.setFont(VOLT_FONT);
u8g2.setCursor(39, DISP_H - 6);
u8g2.print(volt.val / 4096.0 * 3.3);
u8g2.print(volt.val / 4096.0f * 3.3f);
u8g2.print("V");
//绘制列表选择框和电压文字背景