Strange numbers from CD4051BE

I'm trying to use a CD4051BE to get readings from 2 potentiometers (2K Ohm). I would expect the high number for each to be 1024 (or very close) and near 0 on the low end. Pot0 is returning expected results no matter where I turn the knob to. However, Pot1 is erratic at best. With both all the way up, Pot1 returns 895+/-. If I turn Pot1 all the way down, it still reads 895+/-. Turning Pot0 all the way down to 0 results in Pot1 reading 8+/-. Even if it's turned all the way up

Here is the sketch i'm using

int totalChannels = 2;

int addressA = 5;
int addressB = 6;
int addressC = 7;

int A = 0;      //Address pin A
int B = 0;      //Address pin B
int C = 0;      //Address pin C

void setup() {
  Serial.begin(9600);
  // Prepare address pins for output
  pinMode(addressA, OUTPUT);
  pinMode(addressB, OUTPUT);
  pinMode(addressC, OUTPUT);
  // Prepare read pin 
  pinMode(A1, INPUT);
}

void loop() {
  //Select each pin and read value
  for(int i=0; i<totalChannels; i++){
    A = bitRead(i,0); //Take first bit from binary value of i channel.
    B = bitRead(i,1); //Take second bit from binary value of i channel.
    C = bitRead(i,2); //Take third bit from value of i channel.

    //Write address to mux
    digitalWrite(addressA, A);
    digitalWrite(addressB, B);
    digitalWrite(addressC, C);
delay(10);
    //Read and print value
    Serial.print("Channel ");
    Serial.print(i);
    Serial.print(" value: ");
    Serial.println(analogRead(A1));
  }
  delay(2000);
}

Maybe someone can explain what I'm doing wrong or what's going on.

And here is a sketch of how it's all hooked up.
(NOTE: the sketch shows the CD4051 as having 14 pins. It actually has 16. I just need to learn to count!)

EDIT: Inserted the proper code sketch. copied the wrong one in the first time round.

Hard wire the mux to read only address zero.
What do you get on A1?

Hard wire the mux to read only address one.
What do you get on A1?

larryd:
Hard wire the mux to read only address zero.
What do you get on A1?

Hard wire the mux to read only address one.
What do you get on A1?

When 0 is singled out (both script and on breadboard), it performs as it should.

When 1 is singled out, it will only return 144-928.

Does the same with another CD4051 installed as well. And the same with swapping pots.

I'm at a bit of a loss.

Not enough current? Only things connected are as it is in my schematic (if one can call it that).

Show us a good image of your wiring.
Posting images:
Simple guide for inserting images in a post - Website and Forum - Arduino Forum.

larryd:
Show us a good image of your wiring.
Posting images:
Simple guide for inserting images in a post - Website and Forum - Arduino Forum.

Not sure there is a need for that. I just moved the chip to a different area of this cheap Chinese breadboard. Now I'm getting readings all over the place. Wiggle a wire and it goes nuts.

Who sells decent breadboards for a decent price in the US?

These are reasonable:

https://www.jameco.com/z/WBU-204-R-1660-Point-Solderless-Breadboard-6-5-Lx4-3-W_20774.html

https://www.jameco.com/z/WBU-208-R-3220-Point-Solderless-Breadboard-7-3-Lx7-5-W_20812.html

larryd:
These are reasonable:

https://www.jameco.com/z/WBU-204-R-1660-Point-Solderless-Breadboard-6-5-Lx4-3-W_20774.html

https://www.jameco.com/z/WBU-208-R-3220-Point-Solderless-Breadboard-7-3-Lx7-5-W_20812.html

I appreciate the links! Funny thing is, I have the page loaded and was just putting the eyes on the exact same one you pictured above. Too funny!

Thanks for your time and help. I'll order a new board and then set this up again. Hopefully, that takes care of the issue. If not, I'll be back on this thread scratching my head again.

Well, I got my really nice Jameco breadboard this week. Thanks for the suggestion larryd. This board is so much nicer than the cheap Chinese boards I've been using. Money well spent even though the cheap boards were not the problem.

I did get it figured out though.

For anyone having a similar issue with the CD4051 who finds this thread, in my code above, I originally set "totalChannels = 2;" as I was only utilizing 2 of the 8 available channels.

Apparently, for the code above to work, it needs to read all 8 channels of the CD4051. Set "totalChannels = 8;" and it appears to do what I needed it to do.

EDIT: Forgot to mention that I also tied all the unused channels to ground.
Thanks once again to larryd!!

Might have spoke too soon. The serial monitor is showing Pot 1 on Channel 0 AND Channel 4. And Pot 2 on Channel 1 AND Channel 5. This is not really an issue for what I'm wanting to do at this point. However, it may be an issue if/when I add more potentiometers. I'll just have to wait and see.

EDIT: This was due to the fact that I had an error in my sketch/connections. I had pins 5, 6 and 7 as my address pins. When in fact they were connected to 4, 5 and 6. Doh!!!! I have also tested with 5 potentiometers and all works as it should. Yay!!!

Expert !