Support for Arduino IDE 1.0
This commit is contained in:
@@ -1,3 +1,5 @@
|
|||||||
|
- Support for Arduino IDE 1.0
|
||||||
|
|
||||||
Version 1.4.0
|
Version 1.4.0
|
||||||
|
|
||||||
- ISSUE #6: Support for specifying dots on setDisplayToString
|
- ISSUE #6: Support for specifying dots on setDisplayToString
|
||||||
|
|||||||
@@ -16,7 +16,12 @@ You should have received a copy of the GNU General Public License
|
|||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#if defined(ARDUINO) && ARDUINO >= 100
|
||||||
|
#include "Arduino.h"
|
||||||
|
#else
|
||||||
#include "WProgram.h"
|
#include "WProgram.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "TM1638.h"
|
#include "TM1638.h"
|
||||||
#include "string.h"
|
#include "string.h"
|
||||||
|
|
||||||
|
|||||||
7
TM1638.h
7
TM1638.h
@@ -19,7 +19,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#ifndef TM1638_h
|
#ifndef TM1638_h
|
||||||
#define TM1638_h
|
#define TM1638_h
|
||||||
|
|
||||||
#include <WProgram.h>
|
#if defined(ARDUINO) && ARDUINO >= 100
|
||||||
|
#include "Arduino.h"
|
||||||
|
#else
|
||||||
|
#include "WProgram.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "TM1638Fonts.h"
|
#include "TM1638Fonts.h"
|
||||||
|
|
||||||
#define TM1638_COLOR_RED 1
|
#define TM1638_COLOR_RED 1
|
||||||
|
|||||||
Reference in New Issue
Block a user