Used to draw horizontal bar indicators using characters on a Gameduino display. Requires Gameduino library.

This is used to display moving bar style indicators on a Gameduino VGA display. You will require the Gameduino library in order to use this. The indicators are made up of a horizontal strip of characters. The left side of the indicator represents the minimum possible reading and the right side represents the maximum possible reading. When you draw the indicator you specify what reading to display and the code works out which characters to display so that a bar is drawn starting at the left and extending right up to an appropriate position. The BarIndicator class allows you to specify the location of the indicator on the screen, the length of the indicator (the number of characters to use) and the minimum and maximum values for the bar. You can also change which section of the character set to use when drawing the bar.

History

BarIndicator constructor now defaults to using character codes 128 to 137 when drawing indicators. default tip

2012-11-11, by RichardE [Sun, 11 Nov 2012 17:06:06 +0000] rev 3

BarIndicator constructor now defaults to using character codes 128 to 137 when drawing indicators.


Fixed more errors in comments.

2012-11-11, by RichardE [Sun, 11 Nov 2012 13:10:59 +0000] rev 2

Fixed more errors in comments.


Fixed a few errors in comments.

2012-11-11, by RichardE [Sun, 11 Nov 2012 13:07:28 +0000] rev 1

Fixed a few errors in comments.


First commit. Uses characters '0' to '9' to make indicators by default.

2012-11-11, by RichardE [Sun, 11 Nov 2012 13:01:20 +0000] rev 0

First commit. Uses characters '0' to '9' to make indicators by default.