Controlling Seven Segment Digit Displays using only two Arduino pins | use of 74HC164 Shift Register

แชร์
ฝัง

ความคิดเห็น • 10

  • @peterhenson823
    @peterhenson823 ปีที่แล้ว

    imo, your video here is the most useful video on shift registers on TH-cam. It actually demonstrates how to declare an output in decimal to talk to the IC (who - in a sense - only speaks binary). All other videos only demonstrate how to make a for-loop to make a "racer" LED circuit. They don't teach a full-depth understanding of how and what you should output. Thank you for sharing.

  • @Dancopymus
    @Dancopymus 3 หลายเดือนก่อน

    Hello friend, sorry but I didn't understand what it means in the code, in const byte digits[ ] 247,24,123 ... Is it possible to share the full video code? Thanks

  • @nobrainstuff
    @nobrainstuff 2 หลายเดือนก่อน

    You should name those pins according to the norms.

  • @soumik65
    @soumik65 4 ปีที่แล้ว +1

    Keep it up bro . We are with you🤗👌

  • @prabhanjanbongarde1109
    @prabhanjanbongarde1109 2 ปีที่แล้ว +1

    thank you so much sir

  • @mohjai6733
    @mohjai6733 ปีที่แล้ว +2

    #define DATAPIN 2
    #define CLK_PIN 3
    const byte digits[] = {247, 24, 123, 44, 41, 75, 137, 136, 59, 8, 9};
    int index = 1;
    void setup()
    {
    pinMode(DATAPIN, OUTPUT);
    pinMode(CLK_PIN , OUTPUT);
    }
    void loop()
    {
    for(int ones = 1; ones

  • @dronebot2079
    @dronebot2079 3 ปีที่แล้ว

    Can you give the code

  • @ifeanyiasiwe9989
    @ifeanyiasiwe9989 2 ปีที่แล้ว

    Send the code for sir.