2 Commits

Author SHA1 Message Date
rjbatista@gmail.com
f9eecc06e3 small correction 2012-01-11 02:17:26 +00:00
rjbatista@gmail.com
76e0696880 Version 2.0.0 2012-01-11 01:46:00 +00:00

View File

@@ -34,10 +34,6 @@ class TM1640 : public TM16XX
/** Instantiate a tm1640 module specifying the display state, the starting intensity (0-7) data and clock pins. */ /** Instantiate a tm1640 module specifying the display state, the starting intensity (0-7) data and clock pins. */
TM1640(byte dataPin, byte clockPin, boolean activateDisplay = true, byte intensity = 7); TM1640(byte dataPin, byte clockPin, boolean activateDisplay = true, byte intensity = 7);
/** Set the display to a unsigned decimal number (with or without leading zeros) */
void setDisplayToDecNumber(unsigned long number, word dots, boolean leadingZeros = true,
const byte numberFont[] = NUMBER_FONT);
protected: protected:
virtual void sendChar(byte pos, byte data, boolean dot); virtual void sendChar(byte pos, byte data, boolean dot);
}; };