#include <Arduino.h>
const int segemnto[] = {23, 18, 5, 17, 16, 21, 22, 2};
const int digito[] = {34, 35, 32, 33, 26, 25, 27, 14};
const int LETTERS[8] = {
0b00011000,
0b01111110,
0b01110110,
0b01110111,
0b01011110,
0b00110000,
0b01111001,
0b01111000
};
void showLetter(int display, int letterIndex) {
}
void setup() {
void loop() {
showLetter(1, 0);
showLetter(2, 1);
showLetter(3, 2);
showLetter(4, 3);
delay(1000);
/
showLetter(1, 4);
showLetter(2, 5);
showLetter(3, 6);
showLetter(4, 7);
delay(1000);
}