Тёмный

74HC595 & 74HC165 Shift Registers with Arduino 

DroneBot Workshop
Подписаться 608 тыс.
Просмотров 401 тыс.
50% 1

Опубликовано:

 

3 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 350   
@manofmesopotamia7602
@manofmesopotamia7602 4 года назад
this gentleman is so generous in giving knowledge, I wish him the best in all (health, long life, fortune, good wife, and more important to stay progressed) >>>> big hug to you from Iraq 🌹
@BurnerStudio
@BurnerStudio 4 года назад
yup, agree with you :D
@muesli4597
@muesli4597 3 года назад
Can you be more specific regarding the "good" wife please?
@manofmesopotamia7602
@manofmesopotamia7602 3 года назад
@@muesli4597 I was expressing best wishes for him basing on my country best wishes to good people. In Iraq, one of good wishes to a friend is to wish him have a good wife to support and live with her happily 😉
@muesli4597
@muesli4597 3 года назад
Did you consider peoples sexual preferences before jumping to a conclusion?
@hamzahaytham3940
@hamzahaytham3940 3 года назад
@@muesli4597 Dude can you stop talking please
@anthonyschroeder3611
@anthonyschroeder3611 4 года назад
I just want to say that I began my electrical career as a electrical technician by starting out with tinkering with microcontrollers, namely Arduinos. I learned the basics from Drone Bot Workshop and carried the knowledge I learned from it to other fields and through these events impressed my current employer to land a job straight out of community college. Thank you so much for all you do. I will be donating to show my gratitude and appreciation :) I encourage anyone else who understands how valuable and rare it is to find material like the one DBW provides.
@tubeDude48
@tubeDude48 4 года назад
Bill *ALWAYS* has a way of presenting video's in a very logical way. And he presents a wide range of projects!
@jimlthor
@jimlthor Год назад
Thank you! I've seen multiple videos saying "this is what a shift register does" but never showed how to actually use it
@nickrobitsch2929
@nickrobitsch2929 4 года назад
I have found the Bob Ross of Electronics. Subscribed.
@casemotube
@casemotube 4 года назад
You, Sir, have opened the doors to my better understanding of Arduino and bitwise logic, and I thank you sincerely. I'm 62-years-old and discovered the Arduino playground in early January of 2020, and I'm hooked (it's my new hobby). After using the 74HC595 in an early LED display project, I began to study the nuts-and-bolts of the unit, and I find this all fascinating. For those interested in the logic-level workings of the 74HC595 (or any other chips, for that matter), here are a few references that I've discovered along the way that can be used by both beginners and advanced coders alike. For those who aren't familiar with bitwise operations and boolean algebra, don't let the big words fool you; it's as simple as yes or no, on or off, zero or one...just forget about the world of 0s and 9s, and shift into the world of 0x0 through 0xf (hex numbers), and 0b0 through 0b1 (binary numbers (all two of them)). Once I started coding with hex and binary numbers back in 1990, I never looked back. Mentally converting hex numbers into binary numbers and vice versa is simple, once you learn the trick. I've C & Ped a copy of comments I wrote for a 74HC595 bit-shifting LED project I wrote. I'll share the code on the DroneBot Workshop as soon as I can. When I code, I comment a lot; I comment on the comments if need be. // Forward: The 74HC595 is a SIPO (Serial In, Parallel Out) shift register used to store eight bits of serial data, // and to produce eight bits of parallel outputs. There are two data registers inside the 74HC595: // // 1) the SHIFT register, used to store the serial data inputs ([shift: 1] shifted-in by the shift clock, via the data pin) // 2) the STORAGE register, which stores the parallel output data shifted-in from the SHIFT register ([shift: 2] by the latch clock, internal). // // In review: the "shift clock" shifts data into the SHIFT register, and after eight bits are shifted into the // SHIFT register, the "latch clock" shifts the data stored FROM the SHIFT register INTO the STORAGE register, // which produces the eight bits of outputs. (lol I'm not screaming; just making a point.) // // The 74HC595 is mainly utilized to reduce the amount of output pins needed to use from the microcontroller board // (the Arduino UNO board, in this case). Using three pins from the microcontroller board, the 74HC595 provides // eight output pins in a state of either on or off at 5vDC or 0vDC (and no, you can't PWM through the 74HC595). // // The 74HC595 contains 8-sets of master/slave flip-flop logic circuits running on an operating voltage range of 2vDC // to 6vDC (the logic runs at the data-input voltage level), 80μA (maximum draw), and is the coolest little gadget to // entertain one's self with. The more I learn, the more I realize how simple this device really is. When I begin // programming FPGAs (soon), one of my first goals is to create an operational bit shifter. I'm lovin' it! // // There are three states that the parallel output can be set to: ON, OFF, and high impedance. High impedance // blocks any data shifts (and is toggled by the OE (with a bar above the OE) pin). If you want inputs/outputs // turned off? Simply set the OE pin HIGH, otherwise, it defaults to LOW. The shift register can also be directly // overridden and cleared by setting the SRCLR (with a bar above the SRCLR) pin LOW, otherwise, it defaults to HIGH. // // The best reference I've found for the 74HC595 is: lastminuteengineers.com/74hc595-shift-register-arduino-tutorial/ // They do a great job of explaining the internal operations of the 74HC595 shift register in simple terms.
@casemotube
@casemotube 4 года назад
And yes, the previous post was premature. I meant to say more with additional links, but the main jist of the idea came through. It's probably not appropriate, but here's the entire .ino file. It doesn't read as well here, but C & P it into the Arduino IDE; play around, have some fun. //øøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøø// //øøøøø[ Begin: Global variables ]]øøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøø// #include // a library of functions for using flash memory and stuff. #define OP_SPEED 0x64 // used to set the speed at which the 74HC595 is updated #define ARRAYSIZE 0xf0 // used to define the size of the dataArray[] and to end loop iterations const int dataPin = SDA; // Arduino UNO digital SDA pin connected to the DS pin of the 74HC595 shift register (Serial data input) const int clockPin = SCL; // Arduino UNO digital SCL pin connected to the SH_CP of the 74HC595 shift register (SHIFT clock pin) const int latchPin = SCK; // Arduino UNO digital SCK pin (a.k.a. pin 13) connected to the ST_CP of the 74HC595 shift register (STORAGE register clock pin (latch pin)) const byte dataArray[ ARRAYSIZE ] PROGMEM = { // the data array: binary data stored in flash memory used as switches to turn LEDs on and off. B10000000, B01000000, B00100000, B00010000, B00001000, B00000100, B00000010, B00000001, B00000001, B00000010, B00000100, B00001000, B00010000, B00100000, B01000000, B10000000, B10000000, B01000000, B00100000, B00010000, B00001000, B00000100, B00000010, B00000001, B00000001, B00000010, B00000100, B00001000, B00010000, B00100000, B01000000, B10000000, B10000000, B11000000, B11100000, B11110000, B11111000, B11111100, B11111110, B11111111, B11111111, B11111110, B11111100, B11111000, B11110000, B11100000, B11000000, B10000000, B10000000, B11000000, B11100000, B11110000, B11111000, B11111100, B11111110, B11111111, B11111111, B11111110, B11111100, B11111000, B11110000, B11100000, B11000000, B10000000, B00000001, B00000011, B00000111, B00001111, B00011111, B00111111, B01111111, B11111111, B11111111, B01111111, B00111111, B00011111, B00001111, B00000111, B00000011, B00000001, B00000001, B00000011, B00000111, B00001111, B00011111, B00111111, B01111111, B11111111, B11111111, B01111111, B00111111, B00011111, B00001111, B00000111, B00000011, B00000001, B00000001, B00000011, B00000111, B00001111, B00011111, B00111111, B01111111, B11111111, B11111111, B01111111, B00111111, B00011111, B00001111, B00000111, B00000011, B00000001, B11111111, B11111111, B11111111, B11111111, B00000000, B00000000, B00000000, B00000000, B11111111, B11111111, B11111111, B11111111, B00000000, B00000000, B00000000, B00000000, B11111111, B11111111, B11111111, B11111111, B00000000, B00000000, B00000000, B00000000, B11111111, B11111111, B11111111, B11111111, B00000000, B00000000, B00000000, B00000000, B11000011, B11000011, B11000011, B11000011, B00111100, B00111100, B00111100, B00111100, B11000011, B11000011, B11000011, B11000011, B00111100, B00111100, B00111100, B00111100, B11000011, B11000011, B11000011, B11000011, B00111100, B00111100, B00111100, B00111100, B11000011, B11000011, B11000011, B11000011, B00111100, B00111100, B00111100, B00111100, B11001100, B11001100, B00110011, B00110011, B11001100, B11001100, B00110011, B00110011, B11001100, B11001100, B00110011, B00110011, B11001100, B11001100, B00110011, B00110011, B11001100, B11001100, B00110011, B00110011, B11001100, B11001100, B00110011, B00110011, B11001100, B11001100, B00110011, B00110011, B11001100, B11001100, B00110011, B00110011, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, B01010101, B10101010, }; //øøøøø[ End: Global variables ]øøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøø// //øøøøø[ Begin: setup() function ]øøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøø// void setup() { pinMode( clockPin, OUTPUT ); // init the clockPin to output pinMode( latchPin, OUTPUT ); // init the latchPin to output pinMode( dataPin, OUTPUT ); // init the dataPin to output } //øøøøø[ End: setup() function ]øøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøø// //øøøøø[ Begin: loop() function ]øøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøø// void loop() { byte *buf_p; // a pointer to the dataArray[] memory address at the time we're reading the data // begin outer for() loop - this loop pushes the data from the 74HC595's SHIFT register into its STORAGE register for ( int thisByte = 0x00; // declare an index for the data array starting at zero thisByte
@casemotube
@casemotube 4 года назад
CORRECTION: you actually can PWM through the 74HC595 using the OE pin with analogWrite() commands. I got in front of myself on that one; my bad.
@BryanByTheSea
@BryanByTheSea 4 года назад
Another incredible tutorial video. The level of detail and explanation you provide in these tutorials is amazing. Thanks so much
@jmspaceR
@jmspaceR Год назад
You are amazing! For me, you are the Andrew Huberman of electronics. There is nobody out there that conveys the information needed to create your own schematics more concisely than you.
@stevetobias4890
@stevetobias4890 4 года назад
Thank you for the time you give people like myself who are looking to improve their skills with Arduino projects. Your an amazing teacher and I wish you the best in all aspects of life. I love how you explain everything in a normal calm voice unlike others who speak so fast or don't explain in the detail you do. Thanks again
@startobytes
@startobytes 4 года назад
Hi, I have used this Sketch to make my own 8 by 8 LED Matrix with 1 74hc595 and I am also just 14 years old, thank you a Lot!
@YippeePlopFork
@YippeePlopFork 2 года назад
Hey Bill! I needed a good tutorial for my daughter (she's learning digital electronics) and this was my go-to for shift registers. Great video and thank you for presenting this subject in such a way that it is easy to understand for complete beginners!
@scruffy0mogwai
@scruffy0mogwai 4 года назад
Great video! Simple and straight forward. I feel I have a better grasp on these than I have ever had.
@atfchannel3425
@atfchannel3425 4 года назад
I'm from Iraq .. your videos are very excellent. And very useful. Thank you very very much.. I wish for you the best 🌹❤
@janet-tx8cj
@janet-tx8cj Год назад
Fabulous video and detailed explanation. Not only explaining what shift registers are and their benefits, but also a practical example of how they can be used in the real world (or workshop). Thank you very much.
@AX3904P
@AX3904P Год назад
I am an amateur electronics enthusiast, i'm a Noob, i will have to re-watch this a few times, great video by the way.
@ricouxstephane1628
@ricouxstephane1628 4 года назад
A video that illustrates in a great way some articles on the Net I had to read when I had to deal with shift registers for my project. I wish you had published this before : clear, informative and now, 74H* are not magic to me anymore! Great examples too!!
@johnbuckley2506
@johnbuckley2506 4 года назад
Thanks so much for another excellent video. I'm one of the people who asked for this subject and thrilled to see you listen to us - thanks!
@ronaldronald8819
@ronaldronald8819 Год назад
Excellent! I needed to read the states of several pir and magnetic switch sensors while also controlling lights. Shift registers fit this problem like a glove.
@chrisfoot6680
@chrisfoot6680 4 года назад
I really don't get why this guy hasn't more subs. Your one of the best content creators on RU-vid!
@hannescamitz8575
@hannescamitz8575 4 года назад
Probably because he's too specific and slow in his way of explaining his projects, this requires a mind-set that accept this type of videos. People these days are stressed and can't put themselves to listen to him for 30-40min about how you get some LED to blink, they just want the fancy product, not the "boring" side of it. I get calm when listen too teachers and or people like this man or Ben Eater (probably butchered him surname...)
@DeeGeeDeFi
@DeeGeeDeFi 4 года назад
Getting a few resistor array dips. Fiddling with individual resistors is for the birds.
@siddiqjr4660
@siddiqjr4660 2 года назад
i just cant get enough of watching your videos , you among a few who i take as my reference to learn a new skill , so thank you very much
@eebaker699
@eebaker699 10 месяцев назад
Thank you Bill! Just what I was looking for. I was lurking around on your forum site and found this in a topic discussion. Your forum website is great! Keep up with the good work.
@90simissthe
@90simissthe 3 года назад
heck ya, anytime im lookin for a refresher on something i find your videos.
@XanCraft21
@XanCraft21 4 года назад
This video really helped me. Now my 5x5 led display project can be upgraded to have everything on one board. Thank you!
@gmonkman
@gmonkman 3 года назад
Really good video, you take the time to explain, and you speak at just the right pace for me to process what is going on. Great to see practical use rather than all just flop flop theory!
@wardprocter2371
@wardprocter2371 4 года назад
This is one of the best explanation and tutorials on logic gates I have come across. The examples you’ve created showcase their use very well. Great work and worth the wait! Thank-you! Now I’m off to order some logic chips to play with.
@startobytes
@startobytes 4 года назад
Hi, I have used this Sketch to make my own 8 by 8 LED Matrix with 1 74hc595 and I am also just 14 years old, thank you a Lot!
@modx5534
@modx5534 3 года назад
Excuse me, but how did you manage to drive 64 Leds with just the eight outputs of one 74hc595?
@noweare1
@noweare1 4 года назад
Very useful tutorial, thank you for the work you put in on this. I did get confused when the clock enable pin was used as the clock and the clock pin was used as the enable. I got the data sheet and sure enough it said those pins are interchangeable. I like the way you taught how the byte was complemented to get it back to what it really represented.
@BarackBananabama
@BarackBananabama 4 года назад
When you talk about SIPO and PISO, you may use branched and directional arrows to illstrate their jobs in a visual manner.
@benjaminrich9396
@benjaminrich9396 4 года назад
Great videos. Very well structured. Also, being genuine here, serious respect to a guy whose slight speech impediment means he pronounces 'sh' as a kind of 'slzch' having the word workSHop in his title and doing a video on SHift registers. :)
@guidovlaere
@guidovlaere 2 года назад
Thanks for all the great support for my hobby! Very good tutorials! Thanks very much for all your work!
@charlesmarlin6632
@charlesmarlin6632 4 года назад
Purchased on Amazon and tested (Worked Great) these Jameco Valuepro 4116R-1-331LF. Bussed Resistor Network, 16 Pin, 125 mWatt, 330 Ohm, 2% Tolerance ... Great Video!!
@damaruinc
@damaruinc 4 года назад
Synchronicity: A day before this video came out, I was trying to figure out how I could use, say, n outputs from an Arduino to drive, say, 2^n LEDs. I'm very new to electronics and microcontrollers, but I've been doing software development professionally for several years. I love this circuit because it does exactly what I was trying to solve, the circuits in the IC aren't hard to understand, and it's great I can just buy an IC instead of wiring all that stuff together. In software development we have libraries of pre-defined stuff, just as ICs are packages of functionality. So ICs follow the same principle we do: package and make freely available bunches of commonly used functionality.
@thisisanevilcorp992
@thisisanevilcorp992 4 года назад
Hope systemd or other models of development don't reach this area...
@mannhansen9337
@mannhansen9337 4 года назад
Shift registers are often unknown by hobbyists and forgotten by others. I have seen them in a lot of designs since the 70's. Computers, wending machines and as receiver/decoders in military radar equipment. You find them very cheap on Ebay. Try to get hold of the good old Texas TTL Handbook.There are many fun and interesting chips in the 74 series.Even an ALU.
@KidChemic
@KidChemic 4 года назад
your videos are becoming top notch and quickly my favorite on youtube, keep it coming!
@Enigma758
@Enigma758 2 года назад
16:57, I think it's important to keep total current in mind since if you were to wire up two 7 segment displays using 150ohm resistors (mentioned as a possible value earlier), then you would exceed the 200ma limit of the arduino (e.g. 20ma/LED x 16 segments is 320ma).
@333cgs333
@333cgs333 2 года назад
Hi Enigma, so I have to connect 20-40 leds. Is there a better choice?
@Enigma758
@Enigma758 2 года назад
@@333cgs333 Connect them in parallel, each with their own current limiting resistor. Calculate the current through each LED and total it for all LEDs. Use an external power supply which can provide the correct amound of current (always best to provide more current than required so you won't damage/overheat the supply). Be sure to have a common ground between the arduino and you external supply. You can also search youtube for videos on powering LEDs.
@mandelbro777
@mandelbro777 4 года назад
Another amazing video. Thank you kindly for putting this together, it will simplify a very important and useful process in digital electronics for the amateur/enthusiast.
@bob-ny6kn
@bob-ny6kn 2 года назад
I kept using eight resistors for these shift register projects, so I cheaped out and stuck them in a DIP socket. Works okay.
@louco2
@louco2 8 месяцев назад
Thank you so much for taking the time to do these videos!
@moacirg
@moacirg 4 года назад
Parabéns por falar um Inglês pausado e fácil de entender. Isso facilita muito para quem não tem o inglês como língua nativa.
@scottinharwood
@scottinharwood 2 года назад
Hi, I watched this video and said to myself, that's a cool sketch, so I set up the hardware same as yours for the shift register. Then I modified it so that the LEDs would shift from outside to inside and back then repeat. Now, as I was moving the breadboard around while the LEDs were flashing back and forth, the positive 5Vdc from the Arduino connection came out of its pin on the Arduino Uno; and the LEDs still flash as if power is applied to the chip. I have a 150ms delay between LED shifts as follows in the below code segment (this repeats for different binary numbers for the flashing effect): int latchPin=11; int clockPin=9; int dataPin=12; int dt=150; byte LED1s=0b10000001; byte LED2s=0b01000010; byte LED3s=0b00100100; byte LED4s=0b00011000; byte LED5s=0b00100100; byte LED6s=0b01000010; byte LED7s=0b10000001; byte LED8s=0b00000000; . . . void loop() { // put your main code here, to run repeatedly: digitalWrite(latchPin,LOW); shiftOut(dataPin,clockPin,LSBFIRST,LED1s); digitalWrite(latchPin,HIGH); delay(dt); digitalWrite(latchPin,LOW); shiftOut(dataPin,clockPin,LSBFIRST,LED2s); digitalWrite(latchPin,HIGH); . . . From my multimeter, pin 11, the latch pin, varies a bit but averages to about 4.93Vdc and seems to be supplying all the power the chip and LEDs require to keep running. I would love to send you a picture or short video so you could see this and maybe repeat it. Scott in Harwood, MD
@yamageki4152
@yamageki4152 2 года назад
GOD explanation. trashes those of difficult web explanations by words.
@SegasonicfanDesigns
@SegasonicfanDesigns 4 года назад
Superb!! Your image / write up on your website was even better. Very grateful to you :)
@vonries
@vonries 4 года назад
Another great video as usual. I haven't seen or heard anything about DB1 in a very long time. I never expected you to do one a week plus one a week of the component level videos as you had once proposed. That's just to much work! I was however hoping you were going to do a DB1 video every other time. I was not planning on building one right now, but was so intrigued by your concept I needed more. I take it that you were not getting enough interest from other viewers to keep it going? That's really ashame. That looked like it was going to be something really special. I would love to see you bring it back to life.
@sheldonlarson3711
@sheldonlarson3711 4 года назад
Very much appreciated! You are making a difference in this world!
@abuhafss1
@abuhafss1 4 года назад
Love all your videos and really appreciate your detailed explanations. Just one thing, I would like to request is that you should zoom in the Arduino Code screen so that the words are readable even on smaller devices.
@KentHervey
@KentHervey 24 дня назад
Thank you very much. I plan to use this for my ESP32 C Lang development
@crisselectronicprojects8408
@crisselectronicprojects8408 4 года назад
Excellent tutorial! Good job man!
@startobytes
@startobytes 4 года назад
Hi, have used this Sketch to make my own 8 by 8 LED Matrix with 1 74hc595 and I am also just 14 years old!
@manojithalder7448
@manojithalder7448 Год назад
Thanks for your in-depth explanation.
@caffeinatedinsanity2324
@caffeinatedinsanity2324 4 года назад
Great tutorial. I used these for controlling a board of 8 active low opto-isolated relays, in conjunction with a library I made specifically for this setup. Basically, shift registers act like gateways.
@bartgroothengel7594
@bartgroothengel7594 3 года назад
Very good explanation.Soothing voice,nice to listen,.Very calm.You got an arduino-fan subscribed!!
@modx5534
@modx5534 3 года назад
Great video! After some initial problems due to my own stupidity (forgot that the same rows on the breadboard are connected ^^..) I got my example to work. Finally I understood how to work with SIPO shift registers and I can't wait to use multiple ones in order to drive more LEDs.
@yasserghozy6815
@yasserghozy6815 9 месяцев назад
Very interresting video I didn't think shift register are so useful
@TRONMAGNUM2099
@TRONMAGNUM2099 3 года назад
You really are a wealth of knowledge.
@ralfw7463
@ralfw7463 4 года назад
I'm a complete novice when it comes to basic electronics. I was searching for PISO without knowing it. Thinking it must be named differently because I associated shift registers solely with SIPO functionality. Thanks so much for enlightening me!
@parulpari7346
@parulpari7346 4 года назад
Such detailed and easy content is rare
@seaofcuriosity
@seaofcuriosity 3 года назад
Best ever explanation ... Love from INDIA
@wackojacko1997
@wackojacko1997 11 месяцев назад
This was great education and demonstration. Thank you!!!!
@angelsosa4189
@angelsosa4189 2 года назад
Your videos are really very informative. It would be interesting in adding a part "B" to this video and connect all 8 data pins to the 1602 LCD. This way a hardware contrast can be made from from a software perspective and a hardware perspective between 4 bit mode and 8 bit mode on the LCD?
@willibaldkothgassner4383
@willibaldkothgassner4383 3 года назад
perfect explanation ... Thanks from Vienna/Austria
@luberies
@luberies 4 года назад
Bill, Thank you for your always marvelous videos!
@jss6404
@jss6404 Год назад
I studied a lot. Thank you for teaching me properly.^^ It was very helpful and useful.
@jeanbarbier9448
@jeanbarbier9448 3 года назад
Hi everybody, Some people ( Joseph Chamness in particular) asked for an '595' that is able to handle higher voltage/current. It exists: Texas Instruments 'TPIC6595' Same pinout as regular LS or HC 595, but open drain output with: - RDS(on) 7 Ohms - Imax 100 mA continuous / 250 mA max - VClamp 33V I have used it widely for anything such as relays (normal or solid-state with HV control) and it works like a charm... Enjoy !
@jeanbarbier9448
@jeanbarbier9448 3 года назад
Typo: TPIC6C595
@MartinScherpa
@MartinScherpa 9 месяцев назад
i think it's more situable and common to use a darlington array (such as the uln2003) which are simply a cascade of a low input transistors and more powerful transistors controled by the first one. Those are 7 darlington transistors for each Ic and are pretty cheap i think, hope someone find this useful
@klong4128
@klong4128 4 года назад
Very good presentàtion of shift register sipo/piso and Arduino programming . If you can use Ar/Vr/Mr for demo ,it will be excellent .Good job done !!
@qzorn4440
@qzorn4440 3 года назад
Geee... a great coffee shop video... Aaah, with some Irish-coffee i can watch most anything...:] and this shift is register wonderful stuff... makes me think of the heath-kit days. thaanks a lot...:)
@bubbatt77
@bubbatt77 2 года назад
coolest thing ever. great explanation.
@imanguha5244
@imanguha5244 2 года назад
Nice! You can also use 7 segment display to demonstrate the operation of this IC.
@electronic7979
@electronic7979 4 года назад
Very helpful information
@terrancevangemert7508
@terrancevangemert7508 4 года назад
The 75HC165 is what I was looking for in another program to build Ben Eater 8 bit or 16 bit Computer. This would make it easy to make a serial input to program or use of a 3.5 inch floppy drive. COOL thanks.. Also it solves the problem of programing EEPROMS... by using both of these chips and not run out of pins.
@garyhardman8369
@garyhardman8369 4 года назад
As soon as I saw 'shift registers', my eyes glazed over...
@markcollard9326
@markcollard9326 4 года назад
Do you have a longer intro video with a longer song? I tend to spontaneously bust out into a robotic dance every time your videos start due to the catchy retro 8-bit style tune and it is contagious.
@Ziplock9000
@Ziplock9000 4 года назад
Interestingly these DIL-16 types of resistor arrays are relatively expensive and hard to find on cheap sites like aliexpress that prefer the DIP packages. When I say expensive, 2 will cost the same as 50 logic chips.
@samtab7964
@samtab7964 3 года назад
Hi good subject, shift registers op can be operated in the alu of the cpu of arduino ! And to expand io You can use 4x16 decoders.
@loopenox
@loopenox 3 года назад
Your channel and overall work is absolute perfection in every way. Thank you so SO much for your great work!
@herrmannfrau861
@herrmannfrau861 4 года назад
Could you please make a workshop about arduino microphones and voice recognition with an arduino. I think that would be a very interesting topic. Thank you for all the interesting workshops, i'm lovin your videos
@DaleDix
@DaleDix 4 года назад
Cheers, makes sense finally!
@chbonnici
@chbonnici 2 года назад
Thank you for your excellent presentation. Well done keep it up.
@raksmeipenh
@raksmeipenh 3 года назад
Dear Sir, would you explain more about how to wire two 74hc165 together? and are there any changes in code? thz in advance!
@GeorgMierau
@GeorgMierau 2 года назад
I've got a Kingbright 7-segment display (SC56-11SRWA) and had to switch the outputs 1 and 2 of my 74HC595 to make your code work properly.
@parulpari7346
@parulpari7346 4 года назад
You deserve more than you get!
@masoudjafarzadeh
@masoudjafarzadeh Год назад
Thank you It's very beautiful and practical
@s1mplelance964
@s1mplelance964 3 года назад
Thank u so much for this clear explaination!
@cschmitz
@cschmitz 4 года назад
Ultra helpful. Thanks for the vid!!
@okoeroo
@okoeroo 3 года назад
Crystal clear explanation, thanks!
@00asaenz
@00asaenz 4 года назад
Thank you for sharing your knowledge. This is very helpful to me. I'm making a 28 standard LED police light bar for my RC using a Teensy. It seems using SIPO shift register is the way to go.
@sebastiank686
@sebastiank686 4 года назад
i really like his tutorials
@everettcook9969
@everettcook9969 3 года назад
I think the reason you are having to use the compliment serial out is because you are not setting clock back to low after you set clock enable low. You are missing shiftIn's first low to high clock transition.
@anokhautomation4453
@anokhautomation4453 3 года назад
Very Very useful tutorial .I respect you Sir a lot. thanking you very much.
@yigitmertsevindim1669
@yigitmertsevindim1669 9 месяцев назад
Another very very very usefull video god bless u man. You are the most well explained teacher in this world....
@expertworkaccount8885
@expertworkaccount8885 2 года назад
U ppl are from another planet. We're diff breeds. I hate not understanding. And I love this stuff. Guess I'm just a new born. I have 25 more life's to live before I can catch up
@warwolt
@warwolt 9 месяцев назад
Excellent video!
@KARLLARK100
@KARLLARK100 4 года назад
Thanks so much for another excellent video how can people give a negative view of your kind words and knowledge love this vid thank you,.//.,
@aldoperez8721
@aldoperez8721 4 года назад
Like always very well done, thanks
@marcello4258
@marcello4258 3 года назад
master task.. correct sleep to the ms which would really add up to 1000ms ;) I guess there would be a couple of cycles iterate through-out the loop which naturally already adds up
@treelibrarian7618
@treelibrarian7618 4 года назад
A good intro for the noobs, but I was slightly disappointed you didn't show how you can combine the shift in and the shift out onto the same clock and data pins: just put a resistor from the serial out of the74HC165 to the serial data pin so that when the pin is in input mode it sees the input data but takes control when it is in output mode. ... also, you can dispense with all the extra parallel latch wires too, by using capacitor-resistor-diode from the clock wire. The R-C on the 165 pulls the PL pin low, but a diode to clock holds it high while the clock is pulsing. The R-C on the 595 holds the RCLK high, but a diode to clock pulls it low while the clock is pulsing. The shift in-out process then looks like this: a long enough low on clock latches the parallel input data; shift in the serial to data; switch the data pinmode immediately (waiting too long with clock in low or high will send unwanted signals to PL or RCLK, though staying low at this point would probably be fine) to output and shift out the wanted serial data (it will have shifted in the data from the 165 during previous step); leave the clock high at the end and after a few microseconds RCLK will get high enough for the data to appear on the outputs. Appropriate values for R and C would give an RC time constant of about 5 of your serial clock pulses.
@treelibrarian7618
@treelibrarian7618 4 года назад
I've been playing with this the last week, and have realised that, for output only, only one controller pin is required if a little delay (50ns or so) is put between the clock signal and the serial input of the 595, with an RC of 1k2Ω/47pF or so. Putting schmidt-trigger buffers or inverters on the input to the board with the shift registers also helps, since with many capacitive things (like CMOS inputs and delay capacitors) running of the clock line it can get a bit messy if all that current has to come down a wire. Then the input side can have a dedicated line, so both lines are now one-way (meaning that optocouplers or current signalling can be used between the boards) and driven from a low impedance source (using a resistor to send data back down the same line when the controller switches the pin to input mode works with 1k5Ω but the signal is messy and takes long time to rise and fall). The One-Wire signal can't be run from a hardware SPI, but can be run from a PWM on chips with DMA like STM32, or with a bit of assembler bitbashing the complete 16bit send & simultaneous receive in 5µs is quite possible - possibly less time than it takes to set up the hardware and definitely smaller code and greater flexibility. Basically, hold the clock low for 100ns to get the data line low as well, and then the rising edge will clock in a 0 to the shift register. hold the clock line high for 100ns till the data line is high too and then blip the clock low for just long enough that the 595 chip registers it (25ns) and then back high before the data line has fallen too far, to clock a 1 into the shift register. Repeat for all bits, leave the clock high at the end and a couple of microseconds later the RCLK will get high too and the new data appears on the outputs. Again, schmidt-trigger buffers help, also after the delay capacitor to the data line, making the ratio between the long high data part of the signal and the short low required before the clocks rising edge less critical, and enabling transmission speed as fast as the processor can handle (72Mhz ARM). With an AVR processor it wouldn't be needed since all timings would be longer, just needing longer RC delays.
@jlinkels
@jlinkels 3 года назад
Very good presentation. Simple, but not oversimplified. The only thing is, 74HC is NOT TTL. The voltages are different, and the technology is CMOS, not Bipolar transistors like in TTL. Strictly 74HC is not even compatible with TTL when operated at 5V. 74HCT is the same technology, same speed and same low power consumption but intended for co-existence with real TTL. Actually HCMOS is more similar to the CMOS 4000 series. But 74HC was designed so the type numbering is compatible with the antique 7400 series.
@RastaJediX
@RastaJediX 3 года назад
Can you explain the complimentary output but again? Why would you not get all 8 bits if you used the non-inverting output?
@EWDDG
@EWDDG Год назад
Great tutorial!
@MrMarkatgrc
@MrMarkatgrc 3 года назад
Super !, Thank you very much and wish you all the best! 👍👍👍
@lespaul36
@lespaul36 2 года назад
I actually use it for for driving 16x2 LCDs.
@wolfgangwulz8079
@wolfgangwulz8079 4 года назад
Hi Bill, It's great as all of your videos.
@MichaelBuetKESE
@MichaelBuetKESE 3 года назад
THANKS!! Very well presented, nice Christmas Lights display; Now how can I customize this to program a set output pattern for a given input Byte? I am trying to get air pistons to "fire" in set order given the desired pattern of piston position sensors (reed switches). So the random pattern of the output with no RESET of INTERRUPT capability is not particularly useful for practical applications: Could you make a Tutorial that caters to programing several air/hydraulic pistons to perform active tasks in a customizable sequence, please? THERE ARE NO USABLE TUTORIALS OUT THERE FOR THAT!!! A lot of the existing tutorials are just about controlling one piston - I cannot find any that would fit my needs... Thanks again for the clear, detailed Tutorials you have already out there - I will definitely incorporate a few of these in my final project. :-) Great stuff!!!
Далее
How Shift Registers Work!
11:50
Просмотров 406 тыс.
LED Displays with Arduino - 7-Segment & Dot-Matrix
44:43
Using Basic Logic Gates - With & Without Arduino
1:03:51
Просмотров 557 тыс.
How Shift Registers Work - The Learning Circuit
10:44
Просмотров 122 тыс.
6 Horribly Common PCB Design Mistakes
10:40
Просмотров 203 тыс.