you can actually turn two leds at the same time if you divide the time and frequency for each led. For example you could change the output channel every 10 ms and you would see that (virtually) different leds are on. This can also work for demultiplexing
You could have used a 74HC595 sipo shift register, it uses 3 control pins and gives you 8 digital outputs, but you can daisy chain them for as many digital outputs as you like while still using only 3 pins.
Exactly my thoughts: use a shift register. Moreover, with a latch and output enable signals, you can also solve the issue about turning two (or more, or all) pins in the same time. But you lose the input ability hehe, I guess you can't have all.. 😛
Much simpler you can use charlieplexing on led part of optocouplers/SSRs , because it doesn't require an auxiliary ic for that task. For example with 3 i/o pins we can control up to 6 i/o devices, with 4 i/o ... up to 12 and so on. The basic formula for this is n*(n-1)=num of i/o, where n = num of i/o pins
@Electronoobs Thanks for sharing another awesome tutorial, that's very helpful for me. regarding your digital multimeter project, instead of using a bulky ssr why you didn't choose a small digital switch like LTC1477 ? i think that fits better in your small project's PCB.
I think it's important to mention that it's not all that big of a deal that you can't select more than one thing at a time. In our world we are dealing with seconds of time. But the mux is dealing with nanoseconds. So even though it's true the mux can only do one at a time, it can do multiple in line and it willl appear to us as the same time because nanoseconds are super fast! Correct me if I'm wrong.
How to use this chip in rc transmitter and receiver project you made earlier? I want to make a 10~16ch transmitter but ran out of pins this seems viable but how to read all inputs at same time and output too. 😅
Hi! Thank you for this presentation. Do you know a way to read or write to multiple I/Os at the same time. I have a project where I want to read multiple PWM signals at the same time using "analog" hall effect sensors. Thank you.
Thanks for making this video. I was going to use one of these MUX devices to increase the digital pins of my Nano but had not considered the limitation of only being able to address one pin at a time. I now may have to use a different MCU or maybe design a latching arrangement. Which would you suggest?
I'm in the same boat, wondering if there is a simple and cheap alternative that would easily add more I/O's that aren't limited to only using 1 pin at a time. I have used the 74HC595 sipo shift register method as well, but wondering if there's another way like this MUX but better?
Ok. So. Ive a question, is this in a general sense, the same type of thing that is used to modify or tune a vehicles various control modules. Pcm bcm tcm. In regards to the piggyback style tuning modules like hondata and demon tuning.modules. Correct?
Thank you for the video. Is there any reason why in the second method you set muxSIG to an analog pin A0 while this enable pin can only be set to high or low?
Great video...you used pwm and you said the response time of the MUX is in ns range...why not program it to select the to inputs or outputs you need at the fastest possible rate it can handle and simulate having two I/O on at the same time...more than likely you will never in this application need that fast response time. It's like pwm Led dimming to ours eyes it's dimming but it's really not.
basically it short circuit like a switch right? Not like the channel reproduce the voltage? Im just wondering if I can redirect a 0.3V to whichever channel I want.
Please make a Gaming Steering Wheel to play some racing games using Arduino and least number of passive components. Hope you will try my Suggested Project.
This seems like a place i could get some help on my project. I've muxed 16 analog inputs (force sensitive resistors) and connected them to the esp32. after finding right resistors and one capacitor, i get the reading in arduino ide serial plotter and it looks nice, but all of my signals are read at the same time... how do i separate them so i can isolate single fsr? any advices?
Can you pls make a tht version of diy Arduino, with the chip that's needed to program the Arduino. What i mean is that use all tht components except the ones that can't be such as that chip or voltage regulators. It would be very helpful Thank you
...is there anyway that a Solar Cell to be multiplex to isolate shaded panels..?... I can't find anyone test this yet.. currently they use a bypass diode (series) instead...can you demonstrate the yield of solar in multiplexed connection... research sake
Great video. I have a bunch of them. Can they be be bit banged say for poling motion sensors. I get I couldn't cause an interrupt unless I read the sensor manually according to its address. Message me man I have something you might like to have. I bought it brand new and it might inspire a cool series of vids that not really anyone is doing and I know the topic is right up your alley, the item was by no means cheap and it has to do with digital music. I'm in Canada but I'd pay the post as a thanks for lack of patreon support for a while. I was going to post it on but you'd get to more viewers and we all live playing with opamps and such. Haha
i just subscribed to your chanel and probably i have to unsubscribe soon because i hate when youtubers are holding and talking to the camera like you did 13-> onward and if a you tuber is telling me "im so exided guys(for you guys)" when i hear this i emidiatly leave the video so please dont do this kind of fake stuff you are providing exelent knolage in your videos but please, please don`t be like any other fake US youtuber i wish you good luck
Join my Arduino Course (Spanish): bit.ly/2JY8icE
My Tools: bit.ly/3uv8bc3
Help me on Patreon: www.patreon.com/ELECTRONOOBS
you can actually turn two leds at the same time if you divide the time and frequency for each led. For example you could change the output channel every 10 ms and you would see that (virtually) different leds are on. This can also work for demultiplexing
Would that work for toggle switches or would they flicker ingame?😊
you could also install latches.
You could have used a 74HC595 sipo shift register, it uses 3 control pins and gives you 8 digital outputs, but you can daisy chain them for as many digital outputs as you like while still using only 3 pins.
Exactly my thoughts: use a shift register. Moreover, with a latch and output enable signals, you can also solve the issue about turning two (or more, or all) pins in the same time. But you lose the input ability hehe, I guess you can't have all.. 😛
Shift registers aren't instantaneous. Although it won't be important here.
@@tunahankaratay1523 it could be used for daisy chaining pairs of mux devices
@@laurv8370for input ability yhetes the opposite of the ic , parallel to serial ic , I think it was 74hc165
@@tunahankaratay1523 Shift registers ARE instantaneous. It is called latching.
Much simpler you can use charlieplexing on led part of optocouplers/SSRs , because it doesn't require an auxiliary ic for that task. For example with 3 i/o pins we can control up to 6 i/o devices, with 4 i/o ... up to 12 and so on. The basic formula for this is n*(n-1)=num of i/o, where n = num of i/o pins
I have one, and never used it. Thanks for the video!
5:44.. Since only one output can be controlled at a time you could have used a single current limiting resistor to ground for all the LEDs.
I like these! And when an overlap of channels would/could be disastrous, you have a built in safety fail safe.
@Electronoobs
Thanks for sharing another awesome tutorial, that's very helpful for me.
regarding your digital multimeter project, instead of using a bulky ssr why you didn't choose a small digital switch like LTC1477 ? i think that fits better in your small project's PCB.
I think it's important to mention that it's not all that big of a deal that you can't select more than one thing at a time.
In our world we are dealing with seconds of time. But the mux is dealing with nanoseconds. So even though it's true the mux can only do one at a time, it can do multiple in line and it willl appear to us as the same time because nanoseconds are super fast!
Correct me if I'm wrong.
excellent video. but how it can be useful? for example, how we can drive 12v led strip with pwm?
Awesome video, plz upload more and more videos
Can I also use this mux module for expand uart pins?
Excellent video ,Thanks for sharing your knowledge. Do other videos soon , Thanks.
You make great videos
Thanks for the best explanation
Why did you choose an analog MUX if You need a digital DECODER like 74HC138?
Do you get a version of this device that works with 3.3V microcontrollers?
How to use this chip in rc transmitter and receiver project you made earlier? I want to make a 10~16ch transmitter but ran out of pins this seems viable but how to read all inputs at same time and output too. 😅
Hi! Thank you for this presentation. Do you know a way to read or write to multiple I/Os at the same time. I have a project where I want to read multiple PWM signals at the same time using "analog" hall effect sensors. Thank you.
Wow, super explanation of a Multiplexer, I'm new to this term and it was fascinating to see one in use inyour channel. Thanks a lot!
Thanks for the great explanation!
Amazing 😄 could you please make a video on shift register?
I love it, Exactly what I needed. Thanks!
12:13 did you manage to achieve this project in the end? Multiplexing touch sensor pins?
Sir can we use more than one outputs or inputs at a time?
Please reply
If you want to hold the OUTPUT ? What do you do ?
Could you tell me where I can look at that future project with a large number of capacitive sensors? You are talking about this project at 12:10
When the robot video series will start? Can't wait for it! 😍
Top 10, mais um excelente video.
Thanks for making this video. I was going to use one of these MUX devices to increase the digital pins of my Nano but had not considered the limitation of only being able to address one pin at a time. I now may have to use a different MCU or maybe design a latching arrangement. Which would you suggest?
I'm in the same boat, wondering if there is a simple and cheap alternative that would easily add more I/O's that aren't limited to only using 1 pin at a time. I have used the 74HC595 sipo shift register method as well, but wondering if there's another way like this MUX but better?
A shift register will be better if you want more than one output at a time
Ok. So. Ive a question, is this in a general sense, the same type of thing that is used to modify or tune a vehicles various control modules. Pcm bcm tcm. In regards to the piggyback style tuning modules like hondata and demon tuning.modules.
Correct?
Thanks for sharing sir.. it's very helpful & easy to understand..
My nodemcu has only one analog input. Can I use a multiplexer to read multiple analog inputs from different servo motors?
Thank you for the video. Is there any reason why in the second method you set muxSIG to an analog pin A0 while this enable pin can only be set to high or low?
Great video...you used pwm and you said the response time of the MUX is in ns range...why not program it to select the to inputs or outputs you need at the fastest possible rate it can handle and simulate having two I/O on at the same time...more than likely you will never in this application need that fast response time. It's like pwm Led dimming to ours eyes it's dimming but it's really not.
i will suggest use pt65 switch/dip switch for the multimeter
The important point with MUX is that the input signal is redirected to the selected ouput
basically it short circuit like a switch right? Not like the channel reproduce the voltage? Im just wondering if I can redirect a 0.3V to whichever channel I want.
Thanks for this. I have a box of CD74HC4067 as I assumed them to be comparative to the MAX7219, good to know what I CAN do with them.
Super video, this is so cool, i made display 64x16 with max7219..
Please make a Gaming Steering Wheel to play some racing games using Arduino and least number of passive components.
Hope you will try my Suggested Project.
This seems like a place i could get some help on my project. I've muxed 16 analog inputs (force sensitive resistors) and connected them to the esp32. after finding right resistors and one capacitor, i get the reading in arduino ide serial plotter and it looks nice, but all of my signals are read at the same time... how do i separate them so i can isolate single fsr? any advices?
how can i multiplex more arms to my body?
Can you talk about charlieplexing? I've heard it is faster, cheaper and more reliable than multiplexing, but would like you talking about it
what do you need to have multiple inputs at the same time, ie multiple toggle switches switched on for a game
Mux and ads1115 Is same things?
That module is a MUX-have for any Arduino project...😁
2:15 you said to jump to minute 00:00 if I just want to see how to use the MUX, but that took me back to the beginning of the video
hahaaha my bad! edit error
Please make a video about EMF supression, to command relays, elctrovalves..... without any noise
Can you use toggle switches with these? Ie on else in game won't flicker??
¿Puedo conectar un mux a otro mux para poderlo usar?
¿O los mux deben ir conectados únicamente al Arduino?
si puedes!
This seems like the basis for TDMA (time division multiple access) multiplexing.
2:10 on your note about where to skip to, it says skip to 00:00. People shouldn’t skip anyway but just pointing out your mistake. Great video though.
Please make an autonomous car project
Do you have a link to that wiring picture at the 7:06 mark? It's a little hard to see in your video.
Why don’t use a 74HC595 and 74HC165?
Or you can use a I2C / MCP23017 or SPI MCP23S17 port expender.
Can you pls make a tht version of diy Arduino, with the chip that's needed to program the Arduino.
What i mean is that use all tht components except the ones that can't be such as that chip or voltage regulators.
It would be very helpful
Thank you
When will you upload the homemade laser show dance device
This is a great video!
What software do you use for your animations?
Which software?
thanks this was really useful,
...is there anyway that a Solar Cell to be multiplex to isolate shaded panels..?... I can't find anyone test this yet.. currently they use a bypass diode (series) instead...can you demonstrate the yield of solar in multiplexed connection... research sake
any chance that arduino 101 PWM episode coming soon ??
could this be used to make 64 button midi controller?
make make remember evan kale channel, he already make it for his guitar. but somehow he missing and also his channel before i download his code.
@@bagassetiawan1478 is it difficult to do?
please make a video on how to make,wifi jammer using arduino or any module,circuits that can provide jamming👍
Next level = use of TDM protocol in some form.
Is it the same as IC CD4051?
No, that will handle analog signals in addition to digital, so it's not he same.
Can i use this system for harvesting energy?? Anyone can help me
Nice video !
Waiting for another NRF24L01+ rc car
Please make autonomous car
You said you can switch on only one output at a time. Does this mean, that you can receive signal from only one input at a time?
Give me Arduino uno code for digital clock signal
It is called multiplexEr
very nice
Thanks bro
nyc
Great video. I have a bunch of them. Can they be be bit banged say for poling motion sensors. I get I couldn't cause an interrupt unless I read the sensor manually according to its address.
Message me man I have something you might like to have. I bought it brand new and it might inspire a cool series of vids that not really anyone is doing and I know the topic is right up your alley, the item was by no means cheap and it has to do with digital music. I'm in Canada but I'd pay the post as a thanks for lack of patreon support for a while. I was going to post it on but you'd get to more viewers and we all live playing with opamps and such. Haha
Cool
👍
Hi
Wtf?! Are you a mindreader or something? I was about to do some research on multiplexers when I got the video nofitication.
well, the mechanical switch also considered digital.
i just subscribed to your chanel and probably i have to unsubscribe soon because i hate when youtubers are holding and talking to the camera like you did 13-> onward and if a you tuber is telling me "im so exided guys(for you guys)" when i hear this i emidiatly leave the video so please dont do this kind of fake stuff you are providing exelent knolage in your videos but please, please don`t be like any other fake US youtuber i wish you good luck
You're in need of some serious help.
Bro when I needed this type of video the most you came in rescue 🥲
Please make autonomous car
Please make an autonomous car project