Beispiel #1
0
void evfd::vfd_clear_icons()
{
	for (int id = 0x10; id < 0x20; id++)
	{
		vfd_set_icon((tvfd_icon)id, false);
	}
	return;
}
Beispiel #2
0
void evfd::vfd_clear_icons()
{
    if (getVfdType() != 4)
    {
	for (int id = 1; id <= 45; id++)
	{
		vfd_set_icon((tvfd_icon)id, false);
	}
    }
    return;
}
Beispiel #3
0
void evfd::vfd_set_icon(tvfd_icon id, bool onoff)
{
	if (getVfdType() != 4) vfd_set_icon(id, onoff, false);
}