This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
led_displays [2025/03/17 11:18] – created wrusman | led_displays [2025/03/24 12:34] (current) – wrusman | ||
---|---|---|---|
Line 2: | Line 2: | ||
Mocht je hier een idee voor hebben of zelf mee aan de slag willen, de aansturing is erg simpel. | Mocht je hier een idee voor hebben of zelf mee aan de slag willen, de aansturing is erg simpel. | ||
+ | {{: | ||
+ | |||
+ | |||
+ | {{:: | ||
voorbeeldcode : | voorbeeldcode : | ||
+ | < | ||
+ | int OEPin = 7; // D7 on the arduino Nano | ||
+ | int clearPin = 8; // D8 on the arduino Nano | ||
+ | int latchPin = 9; // D9 on the arduino Nano | ||
+ | int dataPin = 11; // D11 on the arduino Nano | ||
+ | int clockPin = 13; // D13 on the arduino Nano | ||
+ | |||
+ | // | ||
+ | // -8- | ||
+ | // 3| |7 | ||
+ | // -2- | ||
+ | // 4| |6 | ||
+ | // -5- | ||
+ | // | ||
+ | // bit 1 = not used | ||
+ | // | ||
+ | //0 = 00111111 = 63 | ||
+ | //1 = 00000110 = 6 | ||
+ | //2 = 01011011 = 91 | ||
+ | //3 = 01001111 = 79 | ||
+ | //4 = 01100110 = 102 | ||
+ | //5 = 01101101 = 109 | ||
+ | //6 = 01111101 = 125 | ||
+ | //7 = 00000111 = 7 | ||
+ | //8 = 01111111 = 127 | ||
+ | //9 = 01101111 = 111 | ||
+ | |||
+ | byte segChar[] = { 63, 6, 91, 79, 102, 109, 125, 7, 127, 111}; | ||
+ | |||
+ | void setup() { | ||
+ | pinMode(latchPin, | ||
+ | pinMode(clockPin, | ||
+ | pinMode(dataPin, | ||
+ | pinMode(OEPin, | ||
+ | pinMode(clearPin, | ||
+ | digitalWrite(latchPin, | ||
+ | digitalWrite(clearPin, | ||
+ | digitalWrite(OEPin, | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | // for 0 to 9 | ||
+ | for (int x=0; x<10; x++){ | ||
+ | // shift out the value associated with the x'th value in the array segChar to the third digit the display | ||
+ | shiftOut(dataPin, | ||
+ | // shift out the value associated with the 9-x'th value in the array segChar to the display, | ||
+ | // pushing the previous character to the second digit | ||
+ | shiftOut(dataPin, | ||
+ | // shift out the value associated with the " | ||
+ | // pushing the previous character to the second digit and the first character to the first digit | ||
+ | shiftOut(dataPin, | ||
+ | |||
+ | digitalWrite(OEPin, | ||
+ | digitalWrite(latchPin, | ||
+ | digitalWrite(latchPin, | ||
+ | digitalWrite(OEPin, | ||
+ | | ||
+ | delay (1000); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | </ | ||