CD4051B CMOS Single 8-Channel Analog Multiplexer/Demultiplexer
Lights

CD4051B CMOS Single 8-Channel Analog Multiplexer/Demultiplexer

Condition: New
Availability: In Stock
Advance Payment Only
Share:    

SKU: SKU: DBS43,TMD20,Th5,KRT

Rs.60 Rs. 75

A multiplexer or demultiplexer enables you to expand the in-and outputs on your Arduino board. The 4051 is an 8 channel analog multiplexer / demultiplexer, thus:

  • If you use the 4051 as a Multiplexer: You can choose between 8 different inputs and select just one you want to read at the time.
  • If you use the 4051 as a Demultiplexer you can choose between 8 different outputs and select just one you want to write at the time.

Futhermore, the 4051 is able to work with analog values; in the case of the Arduino, you are able to use the analog inputs with a voltage between 0-5V and route them to an Analog-In Pin on your Arduino.

To select the Pin we would like to read or write, we have to use the three Select Pins (S0, S1 and S2). Each of these pins have to be connected to one digital out pin on the Arduino. Every pin is representing a number (S0 = 1; S1 = 2; S2 = 4) and if we set one of these Select pins to HIGH, the number the pin is representing will be transmitted to the 4051. For example:

  • If S0 and S1 are HIGH and S2 is LOW pin y3 is selected (1+2+0 = 3).
  • If S0 and S2 is HIGH and S1 LOW pin y5 is selected (1+0+4 = 5).

It is not possible to read or write more than one pin on the 4051 at the same time, because you can only select one pin at a time. But you can read and write to the pins quite fast. There is no delay needed between selecting and read or writing the pin.

  • Z —– common input/output (connected to Arduino Input/Output)
  • E —– enable input (active LOW) (connected to ground (gnd))
  • Vee — negative supply voltage (connected to ground (gnd))
  • gnd — ground (0 V)
  • S0-S2 – select inputs (connected to three arduino digitalOut Pins)
  • y0-y7 – independent inputs/outputs
  • Vcc — positive supply voltage (5v)

//////////////////////////////////////////////////////////////////////code example

  1. /
  2. *
  3. *
  4. codeexample for useing a 4051
  5. *
  6. analog multiplexer / demultiplexer
  7. *
  8. by david c. and tomek n.
  9. *
  10. for k3 / malm� h�gskola
  11. *
  12. *
  13. edited by Ross R.
  14. *
  15. edited by Igor de Oliveira Sá.
  16. *
  17. /
  18. int r0 = 0;//value of select pin at the 4051 (s0)
  19. int r1 = 0;//value of select pin at the 4051 (s1)
  20. int r2 = 0;//value of select pin at the 4051 (s2)
  21. int s0 = 2;
  22. int s1 = 3;
  23. int s2 = 4;
  24. int count = 0;//which y pin we are selecting
  25. void setup(){
  26. pinMode(s0, OUTPUT);
  27. pinMode(s1, OUTPUT);
  28. pinMode(s2, OUTPUT);
  29. }
  • void loop () {
  • for (count=0; count<=7; count++) {
  • // select the bit
  • r0 = bitRead(count,0);// use this with arduino 0013 (and newer versions)
  • r1 = bitRead(count,1);// use this with arduino 0013 (and newer versions)
  • r2 = bitRead(count,2);// use this with arduino 0013 (and newer versions)
  • //r0 = count & 0x01; // old version of setting the bits
  • //r1 = (count>>1) & 0x01; // old version of setting the bits
  • //r2 = (count>>2) & 0x01; // old version of setting the bits
  • digitalWrite(s0, r0);
  • digitalWrite(s1, r1);
  • digitalWrite(s2, r2);
  • //Either read or write the multiplexed pin here
  • }
  • }
  • Datasheet:

    CD74HC 4051 series datasheeet

    Based on 1 reviews

    5

    overall

    Add a review

    Asfi - March 26, 2021

    Ask a Question