Library for TM1637 LEDcontroller

Dependents:   mbed_TM1637 TM1637_test

See here for more information.

Revision:
1:f63d87466f55
Parent:
0:dc8789a6e21f
--- a/TM1637_Config.h	Sat Jan 30 20:35:25 2016 +0000
+++ b/TM1637_Config.h	Fri Oct 06 16:43:56 2017 +0000
@@ -1,5 +1,8 @@
 /* mbed TM1637 Library, for TM1637 LEDcontroller
  * Copyright (c) 2016, v01: WH, Initial version
+ *               2017, v02: WH, Added RobotDyn 6 Digit module,
+ *                          Added Eyewink 6 Digit + 6 Keys module, 
+ *                          Constructor adapted to 2 pins: dio, clk 
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
@@ -24,10 +27,16 @@
 #define TM1637_CONFIG_H
 
 // Select one of the testboards for TM1637 LED controller
-#define TM1637_TEST  0
-#define CATALEX_TEST 1 
+#define TM1637_TEST   0
+#define CATALEX_TEST  0 
+#define ROBOTDYN_TEST 0 
+#define EYEWINK_TEST  1 
+
+// Select when you wish to keep the DEPRECATED Constructor with 3 Pins for mosi, miso and sclk
+// The new component Constructor uses only 2 pins: dio and clk
+#define SPI           1 
 
 // Select the display mode: only digits and hex or ASCII
-#define SHOW_ASCII   1 
+#define SHOW_ASCII    1 
 
 #endif
\ No newline at end of file