3 Commits

Author SHA1 Message Date
rjbatista@gmail.com
64e4a29f74 Version 1.3.1 2011-10-28 23:24:36 +00:00
rjbatista@gmail.com
2def3b9779 2011-10-28 22:43:52 +00:00
rjbatista@gmail.com
81aa413f28 Changed pins to match schematics on project site 2011-10-28 22:43:32 +00:00
4 changed files with 12 additions and 8 deletions

View File

@@ -1,3 +1,7 @@
Version 1.3.1
- changed pins to match schematics on project site.
Version 1.3.0 Version 1.3.0
- added support for String Object; - added support for String Object;

View File

@@ -18,8 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <TM1638.h> #include <TM1638.h>
// define a module on data pin 3, clock pin 2 and strobe pin 4 // define a module on data pin 3, clock pin 9 and strobe pin 7
TM1638 module(3, 2, 4); TM1638 module(8, 9, 7);
void setup() { void setup() {
// display a hexadecimal number and set the left 4 dots // display a hexadecimal number and set the left 4 dots

View File

@@ -22,10 +22,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
// define a modules // define a modules
TM1638 modules[] = { TM1638 modules[] = {
TM1638(3, 2, 4), TM1638(8, 9, 7),
TM1638(3, 2, 5), TM1638(8, 9, 6),
TM1638(3, 2, 6), TM1638(8, 9, 5),
TM1638(3, 2, 7) TM1638(8, 9, 4)
}; };
void setup() { void setup() {

View File

@@ -24,9 +24,9 @@ const byte hello[] = {
}; };
// define the first module // define the first module
TM1638 module1(3, 2, 4); TM1638 module1(8, 9, 7);
// to chain modules, use the same clk and data - just specify a different strobe pin // to chain modules, use the same clk and data - just specify a different strobe pin
TM1638 module2(3, 2, 5); TM1638 module2(8, 9, 6);
unsigned long value = 0L; unsigned long value = 0L;
boolean state = true; boolean state = true;