Search results

  1. B

    Troubles in reading 2x 4067 Multiplexers

    Wiring is arriving for dinner time in italy, sorry :/
  2. B

    Troubles in reading 2x 4067 Multiplexers

    This is the "single-4067" code, the inhibit pin is wired directly with ground: int tempAnalogInMap = 0; int tempAnalogIn = 0; //var to hold previously read analog values int analogInsPrev[16]; //array to hold previously read analog values int analogThreshold = 4; //threshold...
  3. B

    Troubles in reading 2x 4067 Multiplexers

    Actually I use this loop: //function to read mux int readMux(int channel){ //loop through the four control pins for(int i = 0 ; i < 4 ; i ++){ digitalWrite(controlPins[ i ], muxChannel [channel][ i ]); } int val = analogRead(SIG_pin); return val; }...
  4. B

    Troubles in reading 2x 4067 Multiplexers

    Hi all, Well, I've made a sketch for a single multiplexer and it works perfectly, but I would like to know if my sketch with arrays is completely wrong... Robsoles: I prefer the tied-control-pins configuration....and I can't understand your code well :confused: Anyway thank you all, I'll try...
  5. B

    Troubles in reading 2x 4067 Multiplexers

    Hi, as I want to increase the analog inputs in my Teensy 2.0 board to read many (48) pots and print them value on the Serial port, I decided to use 3x 4067 16:1 Multiplexers (http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000389.pdf) I've tried to use one...
  6. B

    huge midi controller, I2c expansion question

    Why don't you use some 16:1 Multiplexers such as the HCF4067B (http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000389.pdf) by ST (or the CD4067B (http://www.futurlec.com/4000Series/CD4067.shtml) from TI)? That chip has an Inhibit pin too and can give you 16...
Back
Top