BarGraph

Dependencies:   mbed

Committer:
Wizo
Date:
Thu Nov 15 17:23:34 2018 +0000
Revision:
0:a4839c6a1bf5
BarGraph

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Wizo 0:a4839c6a1bf5 1 /* mbed TextDisplay Library Base Class
Wizo 0:a4839c6a1bf5 2 * Copyright (c) 2007-2009 sford
Wizo 0:a4839c6a1bf5 3 * Released under the MIT License: http://mbed.org/license/mit
Wizo 0:a4839c6a1bf5 4 *
Wizo 0:a4839c6a1bf5 5 * A common base class for Text displays
Wizo 0:a4839c6a1bf5 6 * To port a new display, derive from this class and implement
Wizo 0:a4839c6a1bf5 7 * the constructor (setup the display), character (put a character
Wizo 0:a4839c6a1bf5 8 * at a location), rows and columns (number of rows/cols) functions.
Wizo 0:a4839c6a1bf5 9 * Everything else (locate, printf, putc, cls) will come for free
Wizo 0:a4839c6a1bf5 10 *
Wizo 0:a4839c6a1bf5 11 * The model is the display will wrap at the right and bottom, so you can
Wizo 0:a4839c6a1bf5 12 * keep writing and will always get valid characters. The location is
Wizo 0:a4839c6a1bf5 13 * maintained internally to the class to make this easy
Wizo 0:a4839c6a1bf5 14 */
Wizo 0:a4839c6a1bf5 15
Wizo 0:a4839c6a1bf5 16 #ifndef MBED_TEXTDISPLAY_H
Wizo 0:a4839c6a1bf5 17 #define MBED_TEXTDISPLAY_H
Wizo 0:a4839c6a1bf5 18
Wizo 0:a4839c6a1bf5 19 #include "mbed.h"
Wizo 0:a4839c6a1bf5 20
Wizo 0:a4839c6a1bf5 21 class TextDisplay : public Stream {
Wizo 0:a4839c6a1bf5 22 public:
Wizo 0:a4839c6a1bf5 23
Wizo 0:a4839c6a1bf5 24 // functions needing implementation in derived implementation class
Wizo 0:a4839c6a1bf5 25 /** Create a TextDisplay interface
Wizo 0:a4839c6a1bf5 26 *
Wizo 0:a4839c6a1bf5 27 * @param name The name used in the path to access the strean through the filesystem
Wizo 0:a4839c6a1bf5 28 */
Wizo 0:a4839c6a1bf5 29 TextDisplay(const char *name = NULL);
Wizo 0:a4839c6a1bf5 30
Wizo 0:a4839c6a1bf5 31 /** output a character at the given position
Wizo 0:a4839c6a1bf5 32 *
Wizo 0:a4839c6a1bf5 33 * @param column column where charater must be written
Wizo 0:a4839c6a1bf5 34 * @param row where character must be written
Wizo 0:a4839c6a1bf5 35 * @param c the character to be written to the TextDisplay
Wizo 0:a4839c6a1bf5 36 */
Wizo 0:a4839c6a1bf5 37 virtual void character(int column, int row, int c) = 0;
Wizo 0:a4839c6a1bf5 38
Wizo 0:a4839c6a1bf5 39 /** return number if rows on TextDisplay
Wizo 0:a4839c6a1bf5 40 * @result number of rows
Wizo 0:a4839c6a1bf5 41 */
Wizo 0:a4839c6a1bf5 42 virtual int rows() = 0;
Wizo 0:a4839c6a1bf5 43
Wizo 0:a4839c6a1bf5 44 /** return number if columns on TextDisplay
Wizo 0:a4839c6a1bf5 45 * @result number of rows
Wizo 0:a4839c6a1bf5 46 */
Wizo 0:a4839c6a1bf5 47 virtual int columns() = 0;
Wizo 0:a4839c6a1bf5 48
Wizo 0:a4839c6a1bf5 49 // functions that come for free, but can be overwritten
Wizo 0:a4839c6a1bf5 50
Wizo 0:a4839c6a1bf5 51 /** redirect output from a stream (stoud, sterr) to display
Wizo 0:a4839c6a1bf5 52 * @param stream stream that shall be redirected to the TextDisplay
Wizo 0:a4839c6a1bf5 53 */
Wizo 0:a4839c6a1bf5 54 virtual bool claim (FILE *stream);
Wizo 0:a4839c6a1bf5 55
Wizo 0:a4839c6a1bf5 56 /** clear screen
Wizo 0:a4839c6a1bf5 57 */
Wizo 0:a4839c6a1bf5 58 virtual void cls();
Wizo 0:a4839c6a1bf5 59 virtual void locate(int column, int row);
Wizo 0:a4839c6a1bf5 60 virtual void foreground(uint16_t colour);
Wizo 0:a4839c6a1bf5 61 virtual void background(uint16_t colour);
Wizo 0:a4839c6a1bf5 62 // putc (from Stream)
Wizo 0:a4839c6a1bf5 63 // printf (from Stream)
Wizo 0:a4839c6a1bf5 64
Wizo 0:a4839c6a1bf5 65 protected:
Wizo 0:a4839c6a1bf5 66
Wizo 0:a4839c6a1bf5 67 virtual int _putc(int value);
Wizo 0:a4839c6a1bf5 68 virtual int _getc();
Wizo 0:a4839c6a1bf5 69
Wizo 0:a4839c6a1bf5 70 // character location
Wizo 0:a4839c6a1bf5 71 uint16_t _column;
Wizo 0:a4839c6a1bf5 72 uint16_t _row;
Wizo 0:a4839c6a1bf5 73
Wizo 0:a4839c6a1bf5 74 // colours
Wizo 0:a4839c6a1bf5 75 uint16_t _foreground;
Wizo 0:a4839c6a1bf5 76 uint16_t _background;
Wizo 0:a4839c6a1bf5 77 char *_path;
Wizo 0:a4839c6a1bf5 78 };
Wizo 0:a4839c6a1bf5 79
Wizo 0:a4839c6a1bf5 80 #endif