/*
4 Seven segment display with Pi Pico
by Anderson Costa
Wokwi Community
*/
// Digit 1-4
uint8_t digitPins[] = { 11, 2, 3, 5 };
// A B C D E F G DP
uint8_t segmentPins[] = { 12, 4, 7, 9, 10, 13, 6, 8 };
/*
A
---
F | G | B
---
E | | C
---
D
*/
uint8_t alpha[4][8] = {
{ 1, 1, 0, 0, 1, 1, 1, 0 }, // P
{ 0, 0, 0, 0, 1, 1, 0, 0 }, // I
{ 1, 0, 0, 1, 1, 1, 0, 0 }, // C
{ 1, 1, 1, 1, 1, 1, 0, 0 } // O
};
int main() {
// Define the digit pins as output
for (uint8_t i = 0; i < 4; i++) {
_gpio_init(digitPins[i]);
gpio_set_dir(digitPins[i], GPIO_OUT);
}
// Define the segment pins as output
for (uint8_t i = 0; i < 8; i++) {
_gpio_init(segmentPins[i]);
gpio_set_dir(segmentPins[i], GPIO_OUT);
}
while (true) {
// Scroll the digits
for (uint8_t dig = 0; dig < 4; dig++)
{
// Enable digit
gpio_put(digitPins[dig], 1);
// Scroll the segments
for (uint8_t seg = 0; seg < 8; seg++) {
// Invert (common anode)
if (alpha[dig][seg] == 0) {
gpio_put(segmentPins[seg], 1);
} else {
gpio_put(segmentPins[seg], 0);
}
}
sleep_ms(200);
// Disable digit
gpio_put(digitPins[dig], 0);
sleep_ms(100);
}
// Set the digits to LOW (OFF)
for (uint8_t i = 0; i < 4; i++) {
gpio_put(digitPins[i], 0);
}
//Set the segments to LOW (OFF)
for (uint8_t i = 0; i < 8; i++) {
gpio_put(segmentPins[i], 0);
}
}
return 0;
}
pico:GP0
pico:GP1
pico:GND.1
pico:GP2
pico:GP3
pico:GP4
pico:GP5
pico:GND.2
pico:GP6
pico:GP7
pico:GP8
pico:GP9
pico:GND.3
pico:GP10
pico:GP11
pico:GP12
pico:GP13
pico:GND.4
pico:GP14
pico:GP15
pico:GP16
pico:GP17
pico:GND.5
pico:GP18
pico:GP19
pico:GP20
pico:GP21
pico:GND.6
pico:GP22
pico:RUN
pico:GP26
pico:GP27
pico:GND.7
pico:GP28
pico:ADC_VREF
pico:3V3
pico:3V3_EN
pico:GND.8
pico:VSYS
pico:VBUS
display:A
display:B
display:C
display:D
display:E
display:F
display:G
display:DP
display:DIG1
display:DIG2
display:DIG3
display:DIG4
display:COM
display:CLN