FT800 Series Programmer Guide
Version 2.1
Document Reference No.: BRT_000030 Clearance No.: BRT#037
188
Product Page
Document Feedback Copyright © Bridgetek Limited
No tick marks:
cmd_gauge(80, 60, 50, OPT_NOTICKS, 4,
4, 49152, 65535);
No pointer:
cmd_gauge(80, 60, 50,
OPT_NOPOINTER, 4, 4, 49152, 65535);
Drawing the gauge in two passes, with bright red for the pointer:
GAUGE_0 = OPT_NOPOINTER;
GAUGE_1 = OPT_NOBACK |
OPT_NOTICKS;
cmd_gauge(80, 60, 50, GAUGE_0, 4, 4,
49152, 65535);
cmd(COLOR_RGB(255, 0, 0));
cmd_gauge(80, 60, 50, GAUGE_1, 4, 4,
49152, 65535);