SEGMENT DISPLAY ARDUINO tutorial | seven SEGMENT DISPLAY ARDUINO UNO [code and circuit diagram]

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ก.ค. 2020
  • Hello guys, In this tutorial includes a segment display Arduino tutorial. We can use these seven segment displays to display the letters 0-9 and A-Z. These segment displays are easy to use with Arduino. I used the Arduino UNO to control the segment display.
    OK enjoy it now.
    Short and sweet tutorial.Only from SriTu tech. If you think this video is good, don't forget to like and comment.
    SEGMENT DISPLAY ARDUINO tutorial | seven SEGMENT DISPLAY ARDUINO UNO [code and circuit diagram]
    • SEGMENT DISPLAY ARDUIN...
    Segment Display Arduino
    ***Names of components.
    ***step by step.
    ***Make it easy.
    Subscribe to more videos --- / sritutech_sritu_hobby
    Website for more tutorial --- www.srituhobby.com
    Android app for more tutorial --- bit.ly/3GWcmmD
    Our store with the best prices
    ========================================
    srituhobby.com/shop
    ========================================
    ( Source code and circuit diagram )
    =========================================
    Website -- bit.ly/3cryPdW
    Android app -- bit.ly/3GWcmmD
    =========================================
    Part's List (Our store -- SriTu Hobby)
    ==========================================
    1.Arduino Uno ---- bit.ly/41RMh1o
    2.seven segment display ---- bit.ly/3Qz7vPv
    3.Jumper Wire ----- bit.ly/43V7gSR
    4.Breadboard ---- bit.ly/3NaJ1uh
    ==========================================
    Part's List (amazon)
    ==========================================
    1.Arduino Uno ---- amzn.to/3gOhqeM
    2.seven segment display ---- amzn.to/32c0L0S
    3.Jumper Wire ----- amzn.to/301lSjJ
    4.Breadboard ---- amzn.to/2CpVkQU
    ==========================================
    ( Social media links )
    ==========================================
    Facebook-------- / srituhobby
    Twitter------------- / sritu_hobby
    Instagram------- / sritu_hobby
    Pinterest--------- / sritu_hobby
    Tiktok------------- / sritu_hobby
    Reddit------------- / sritu_tech
    Linkedin----------- / sritu-hobby
    Snapchat-------- / srituhobby
    Threads---------www.threads.net/sritu_hobby
    ==========================================
    Thanks for watching......................
    If you learned something in this video,
    **Like.
    **Share.
    **Subscribe.
    What do you think? please comment below.
    #SriTu_Tech_arduino #display #arduino _uno
  • วิทยาศาสตร์และเทคโนโลยี

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

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

    makasih bang aku jadi bisa. rangkaian nya, aku sangat senang hingga mencium telapak kaki mu akhirnya bisa pulang barakallahu bang

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

    Amazing video! It is really detailed and helps me a lot! Thank you!

  • @i_m_thevand_jr1108
    @i_m_thevand_jr1108 8 หลายเดือนก่อน

    Amazing🔥

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

    Mantap dan keren 😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎😎

  • @The_Lemngo
    @The_Lemngo 4 หลายเดือนก่อน

    Great! although some digits are skipped when turned on, your tutorial was the most helpful! I am stumped, but I did make a start!

    • @sritu_hobby
      @sritu_hobby  4 หลายเดือนก่อน

      Glad to hear that!

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

    Im using 5011AS, and it should be digitalWrite(pin[b], !number[a][b]); inside the for-loop

  • @adibk7943
    @adibk7943 8 หลายเดือนก่อน +1

    Great video.👍

    • @sritu_hobby
      @sritu_hobby  8 หลายเดือนก่อน

      Thanks 👍

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

    Baik bang aku akan terus menonton video kamu, teruskan kerjayamu bang

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

    it is nice but configuration of numbers 0-1 not correct should have been reverse.

  • @hamzahatikullah2206
    @hamzahatikullah2206 8 หลายเดือนก่อน +1

    I got it

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

    yes it work with 220 ohm

  • @aynz10
    @aynz10 2 หลายเดือนก่อน +1

    😮

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

    the link is not working for the Code

  • @user-p4w5jnef5w6fu
    @user-p4w5jnef5w6fu 7 หลายเดือนก่อน

    Hey, a couple details:
    The 2 and 3 are cut in the middle,
    the 7 displayed segment "F" And became 9
    did i put the plugs wrong? i wonder!

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

    how do you get the array number in the coding because i want to start with '0'?

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

      /*How to use seven segment LED display.
      created by SriTu Tech team.
      Read the code below and use it for any of your creation
      */
      byte pin[] = {2, 3, 4, 5, 6, 7, 8, 9};//arduino pin array
      int number[20][8] = {//number array
      {0, 0, 0, 0, 0, 0, 0, 1},//0
      {0, 0, 0, 1, 0, 0, 0, 1},//1
      {1, 1, 0, 0, 0, 1, 1, 1},//2
      {1, 1, 0, 1, 0, 1, 1, 1},//3
      {0, 0, 1, 0, 0, 0, 1, 0},//4
      {0, 0, 1, 1, 0, 0, 1, 0},//5
      {1, 0, 0, 0, 0, 0, 1, 0},//6
      {1, 0, 0, 1, 0, 0, 1, 0},//7
      {1, 1, 0, 0, 0, 1, 0, 0},//8
      {1, 1, 0, 1, 0, 1, 0, 0},//9
      {1, 0, 0, 0, 1, 0, 0, 0},//10
      {1, 0, 0, 1, 1, 0, 0, 0},//11
      {0, 0, 0, 0, 1, 0, 0, 0},//12
      {0, 0, 0, 1, 1, 0, 0, 0},//13
      {1, 1, 0, 0, 0, 0, 1, 1},//14
      {1, 1, 0, 1, 0, 0, 1, 1},//15
      {0, 0, 0, 0, 0, 0, 0, 0},//16
      {0, 0, 0, 1, 0, 0, 0, 0},//17
      {1, 0, 0, 0, 0, 0, 0, 0},//18
      {1, 0, 0, 1, 0, 0, 0, 0},//19
      };
      void setup() {
      for (byte a = 0; a < 19; a++) {
      pinMode(pin[a], OUTPUT);//define output pins
      }
      }
      void loop() {
      for (int a = 0; a < 20; a++) {
      for (int b = 0; b < 19; b++) {
      digitalWrite(pin[b], number[a][b]);//display numbers
      }
      delay(500);//delay
      }
      }

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

    is it possible to use another risistor? (I don't have 180 ῼ resistor)

  • @Lekhey-
    @Lekhey- 7 หลายเดือนก่อน +1

    So if i want use 3 seven segment i need to use 3 arduino ?!

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

    EZ

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

    Where do we get to the ground?

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

      Please visit my circuit diagram

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

    I have 220ohm resister. It isnt working. Shall I need 180ohm?

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

      You can try it.

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

      you can use 3.3V without resistor instead of 5V with resistor

  • @user-qc8mh6he9u
    @user-qc8mh6he9u 6 หลายเดือนก่อน

    Where is code dude it's very hard to find why don't you pin in comment section

  • @user-wo8fz6wf7b
    @user-wo8fz6wf7b 6 หลายเดือนก่อน

    mi display no encendio en ningun momento

    • @sritu_hobby
      @sritu_hobby  6 หลายเดือนก่อน

      Check power wires

  • @KUMAH62Y
    @KUMAH62Y 5 หลายเดือนก่อน

    9 is q

  • @HASAN-qw5zy
    @HASAN-qw5zy 2 ปีที่แล้ว +4

    where code and circuit diagram??

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

      in du descriptin

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

      /*How to use seven segment LED display.
      created by SriTu Tech team.
      Read the code below and use it for any of your creation
      */
      byte pin[] = {2, 3, 4, 5, 6, 7, 8, 9};//arduino pin array
      int number[20][8] = {//number array
      {0, 0, 0, 0, 0, 0, 0, 1},//0
      {0, 0, 0, 1, 0, 0, 0, 1},//1
      {1, 1, 0, 0, 0, 1, 1, 1},//2
      {1, 1, 0, 1, 0, 1, 1, 1},//3
      {0, 0, 1, 0, 0, 0, 1, 0},//4
      {0, 0, 1, 1, 0, 0, 1, 0},//5
      {1, 0, 0, 0, 0, 0, 1, 0},//6
      {1, 0, 0, 1, 0, 0, 1, 0},//7
      {1, 1, 0, 0, 0, 1, 0, 0},//8
      {1, 1, 0, 1, 0, 1, 0, 0},//9
      {1, 0, 0, 0, 1, 0, 0, 0},//10
      {1, 0, 0, 1, 1, 0, 0, 0},//11
      {0, 0, 0, 0, 1, 0, 0, 0},//12
      {0, 0, 0, 1, 1, 0, 0, 0},//13
      {1, 1, 0, 0, 0, 0, 1, 1},//14
      {1, 1, 0, 1, 0, 0, 1, 1},//15
      {0, 0, 0, 0, 0, 0, 0, 0},//16
      {0, 0, 0, 1, 0, 0, 0, 0},//17
      {1, 0, 0, 0, 0, 0, 0, 0},//18
      {1, 0, 0, 1, 0, 0, 0, 0},//19
      };
      void setup() {
      for (byte a = 0; a < 19; a++) {
      pinMode(pin[a], OUTPUT);//define output pins
      }
      }
      void loop() {
      for (int a = 0; a < 20; a++) {
      for (int b = 0; b < 19; b++) {
      digitalWrite(pin[b], number[a][b]);//display numbers
      }
      delay(500);//delay
      }
      }

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

      copy and paste it into aduino IDE

  • @xlafox3883
    @xlafox3883 7 หลายเดือนก่อน

    pls code

  • @user-sk3yn8oq9v
    @user-sk3yn8oq9v 8 หลายเดือนก่อน +2

    whereis the code link?

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

      heres the code:

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

    Non le code n'est pas correct

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

    I dont know why it doesnt work

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

    Code and circuit ?????

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

      Visit the description

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

      /*How to use seven segment LED display.
      created by SriTu Tech team.
      Read the code below and use it for any of your creation
      */
      byte pin[] = {2, 3, 4, 5, 6, 7, 8, 9};//arduino pin array
      int number[20][8] = {//number array
      {0, 0, 0, 0, 0, 0, 0, 1},//0
      {0, 0, 0, 1, 0, 0, 0, 1},//1
      {1, 1, 0, 0, 0, 1, 1, 1},//2
      {1, 1, 0, 1, 0, 1, 1, 1},//3
      {0, 0, 1, 0, 0, 0, 1, 0},//4
      {0, 0, 1, 1, 0, 0, 1, 0},//5
      {1, 0, 0, 0, 0, 0, 1, 0},//6
      {1, 0, 0, 1, 0, 0, 1, 0},//7
      {1, 1, 0, 0, 0, 1, 0, 0},//8
      {1, 1, 0, 1, 0, 1, 0, 0},//9
      {1, 0, 0, 0, 1, 0, 0, 0},//10
      {1, 0, 0, 1, 1, 0, 0, 0},//11
      {0, 0, 0, 0, 1, 0, 0, 0},//12
      {0, 0, 0, 1, 1, 0, 0, 0},//13
      {1, 1, 0, 0, 0, 0, 1, 1},//14
      {1, 1, 0, 1, 0, 0, 1, 1},//15
      {0, 0, 0, 0, 0, 0, 0, 0},//16
      {0, 0, 0, 1, 0, 0, 0, 0},//17
      {1, 0, 0, 0, 0, 0, 0, 0},//18
      {1, 0, 0, 1, 0, 0, 0, 0},//19
      };
      void setup() {
      for (byte a = 0; a < 19; a++) {
      pinMode(pin[a], OUTPUT);//define output pins
      }
      }
      void loop() {
      for (int a = 0; a < 20; a++) {
      for (int b = 0; b < 19; b++) {
      digitalWrite(pin[b], number[a][b]);//display numbers
      }
      delay(500);//delay
      }
      }

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

    alec ano masasabi mo dito?

  • @21__nisarkhan68
    @21__nisarkhan68 2 ปีที่แล้ว

    Sir please give me a code

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

      Please visit the video description

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

      /*How to use seven segment LED display.
      created by SriTu Tech team.
      Read the code below and use it for any of your creation
      */
      byte pin[] = {2, 3, 4, 5, 6, 7, 8, 9};//arduino pin array
      int number[20][8] = {//number array
      {0, 0, 0, 0, 0, 0, 0, 1},//0
      {0, 0, 0, 1, 0, 0, 0, 1},//1
      {1, 1, 0, 0, 0, 1, 1, 1},//2
      {1, 1, 0, 1, 0, 1, 1, 1},//3
      {0, 0, 1, 0, 0, 0, 1, 0},//4
      {0, 0, 1, 1, 0, 0, 1, 0},//5
      {1, 0, 0, 0, 0, 0, 1, 0},//6
      {1, 0, 0, 1, 0, 0, 1, 0},//7
      {1, 1, 0, 0, 0, 1, 0, 0},//8
      {1, 1, 0, 1, 0, 1, 0, 0},//9
      {1, 0, 0, 0, 1, 0, 0, 0},//10
      {1, 0, 0, 1, 1, 0, 0, 0},//11
      {0, 0, 0, 0, 1, 0, 0, 0},//12
      {0, 0, 0, 1, 1, 0, 0, 0},//13
      {1, 1, 0, 0, 0, 0, 1, 1},//14
      {1, 1, 0, 1, 0, 0, 1, 1},//15
      {0, 0, 0, 0, 0, 0, 0, 0},//16
      {0, 0, 0, 1, 0, 0, 0, 0},//17
      {1, 0, 0, 0, 0, 0, 0, 0},//18
      {1, 0, 0, 1, 0, 0, 0, 0},//19
      };
      void setup() {
      for (byte a = 0; a < 19; a++) {
      pinMode(pin[a], OUTPUT);//define output pins
      }
      }
      void loop() {
      for (int a = 0; a < 20; a++) {
      for (int b = 0; b < 19; b++) {
      digitalWrite(pin[b], number[a][b]);//display numbers
      }
      delay(500);//delay
      }
      }

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

    yo where is the code man😤😤😡😡😡😡😡

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

      Check the video description

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

    edi sana sinabi mo agad na di pala gagana

  • @TecnicalgyanwithReyaansh
    @TecnicalgyanwithReyaansh 4 หลายเดือนก่อน

    Code is wrong

  • @AnilKumar-jx1mi
    @AnilKumar-jx1mi ปีที่แล้ว

    Bhai explain to karo

  • @user-ci8xi1vh3v
    @user-ci8xi1vh3v หลายเดือนก่อน

    hey Man I need the fucking code

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

      Description

  • @user-qc8mh6he9u
    @user-qc8mh6he9u 6 หลายเดือนก่อน +1

    Where is code dude it's very hard to find why don't you pin in comment section

    • @sritu_hobby
      @sritu_hobby  6 หลายเดือนก่อน

      Description

  • @user-qc8mh6he9u
    @user-qc8mh6he9u 6 หลายเดือนก่อน +1

    Where is code dude it's very hard to find why don't you pin in comment section

    • @sritu_hobby
      @sritu_hobby  6 หลายเดือนก่อน

      Do you know visit video description?