Relative Content

Tag Archive for pythonarduinoarduino-unocircuitseven-segment-display

how to make four digits print on seven seg display for specified time period?

from pymata4 import pymata4 import time segPins = [3, 4, 5, 6, 7, 8, 9] digPins = [10, 11, 12, 13] lookupDictionary = { “0”: “1111110”, “1”: “0110000”, “2”: “1101101”, “3”: “1111001”, “4”: “0110011”, “5”: “1011011”, “6”: “1011111”, “7”: “1110000”, “8”: “1111111”, “9”: “1111011”, “A”: “1110111”, “B”: “0011111”, “C”: “1001110”, “D”: “0111101”, “E”: “1001111”, “F”: […]