Skip to content

Commit e6f77b2

Browse files
committed
Updated the hello message; use 12 digits
1 parent bd2eb1a commit e6f77b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ledtest/ledtest.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// Manual for library: http://lygte-info.dk/project/DisplayDriver%20UK.html
55

6-
const byte numberOfDigits = 4;
6+
const byte numberOfDigits = 12;
77
const byte dataPin = A4;
88
const byte clockPin = A5;
99
const byte loadPin = A2;
@@ -12,7 +12,7 @@ LEDDisplayDriver display(dataPin, clockPin, loadPin);
1212

1313
void setup() {
1414
Serial.begin(9600);
15-
Serial.println("Test sketch started");
15+
Serial.println("Hello ledtest");
1616
//
1717
// for (int i = 0; i < 255; ++i) {
1818
// if (!isprint(i)) continue;

0 commit comments

Comments
 (0)