Commit d7b14ec6 authored by 陈家乐's avatar 陈家乐

🐞 fix:52789发送信号0x401 蓄电池电压=0.5,仪表不显示0.5,显示.5

parent 1ce56689
......@@ -1947,6 +1947,10 @@ void SEG_SET_Voltage_NUM(uint8_t m_Flag, uint16_t m_NUM)
{
m8 = SEG_DISPLAY_NUMBER0[Num];
}
else if(m_NUM < 10)
{
m8 = SEG_DISPLAY_NUMBER0[0];
}
else
{
m8 = SEG_UNDISPLAY_NUMBER0[Num];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment