Hi, Using Bela and Pd, I would like to build an FSR array matrix similar to the picture below. My array would consist of 6 rows and 24 columns, with velostat material in between. (Similar to a guitar fretboard). All in all I need to read 144 analog values.

I'm looking for help on how to do this.

Would a Multiplexer Capelet allow me to do this?
(I guess not, it would simply increase the analog inputs up to 64)

If I use the components in the picture without the arduino, could this be feasable with Bela?

Any advice would be appreciated!

Sharptone changed the title to Array Matrix .

It looks like the multiplexer capelet should work just fine

Great, just to make sure. With only the multiplexer capelet (no additional circuitry) I could read the 144 cells?
I would use 24 columns( 24 analog in) and 6 rows (6 analog in) so that would use 30 analog in from the capelet?

I think some of those are inputs and some of those are outputs: the diagram says top layer is read rows and bottom layer is drive columns. If I understand correctly, in your case you want to use 24 columns and 6 rows and that would be 24 outputs and 6 inputs. The multiplexer capelet only multiplexes the inputs, allowing to extend the number from the native 8 to up to 64, and won't even be needed in this case. For driving the outputs you'll need to use a combination of analog outs and digital outs, which add up to exactly 24, so you should be fine with the Bela cape without any capelet.

Great! I managed to create a PD patch that reads the 6 rows (strings 1 to 6) and drives the 24 columns (frets 0 to 23) sequentially. My next step I think is to find a way so that when I press on a cell, for example string 4 and fret 9 it would send the midi note number 59 at the velocity dictated by the fsr.
Any help on doing this would be great!!

that doesn't sound too hard.. if you keep track of which 'fret' (aka column) you're driving, any returned value on one of the six strings should be hardcoded to a fixed midi note number and get sent only when the reading is >0, no?

i can see several ways of mapping this, but not sure which one would be the most CPU efficient.
you could have arrays per string (returning the value for the active fret), or you could give each strings open position the correct midi note number and add/count frets up from there.
as in: open A string would be 45, i'm driving column 3, so add 3 to base string number and send out 48.

Thanks for your thought, For mapping I did as you said, returning the value for the active fret. But I kind of like your open string idea. Will look into it a little more after the holidays.