Library for 3.2'' uLcd Picaso Display4D system Picaso Serial Environment Command Set web: http://www.4dsystems.com.au/product/20/67/Processors_Graphics/PICASO/
Diff: Digit3Led.h
- Revision:
- 1:a74e42cf52b2
diff -r 65fd8b1cbf86 -r a74e42cf52b2 Digit3Led.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Digit3Led.h Sun Apr 05 13:54:48 2015 +0000 @@ -0,0 +1,43 @@ +#ifndef DIGIT_3_LED_H +#define DIGIT_3_LED_H + +#include "Screen.h" +#include "DigitLed.h" + +class Digit3Led:public Widget +{ +public: + /** Construct a 3 Digit Led [000] + * + * @param mScreen the pointer screen + * @params _x up left + * @params _y up left + * @params _resolution 1[000],10[00.0],100[0.00] + */ + Digit3Led(Screen* mScreen,UINT16 _x,UINT16 _y,UINT8 _resolution); + // + virtual void draw(void); + // + virtual ~Digit3Led(void); + // + void setInvisible(bool _state); + // + void setValue(float _value); + // + void setColorBkg(Color _colorBkg); + // + void setColorSeg(Color _colorSeg); + +protected: + Color myColorBkg; + Color myColorSeg; + float myValue; + UINT8 myResolution; + + DigitLed* myDigitLedCentaine; + DigitLed* myDigitLedDizaine; + DigitLed* myDigitLedUnite; + +}; + +#endif \ No newline at end of file