And it’s Done, Tagged onto my JLC order
Will Be cool to see how it sounds.
Maybe it would be good to add somewhere on the schem, that the original schema and code come from YMNK.
btw i think that “Note Out” jack socket will be a better description with “CV out”, this module don’t make sound like a VCO, just send some voltage.
Had the same thought about “NOTE OUT”. It also bugs me that the output is to the left of the input. And I would’ve put individual labels on the note switches. But these are minor quibbles.
Note-Out - True, the original Schematic shows “Pitch Out” I just changed that without thinking much on it
Everything (Schematic, PCB, Panel, Code ) will be credited to YMNK once checked and functional with my revisions, Then I will release the GIT.
#Realisation Sets In…. "I was going to label them… I could not determine from the code or the schematic what the top row of switches was for /#Realisation. Yes now I realise that he said Keyboard, and they are not spaced oddly but are laid out like a keyboard DOH! DOH!!!
Well that will be sorted for the next version . … and I can swap the Jacks.
In fact I think the next version will be a bit different ( PB86 push buttons with LED’s, a duino MegaPro that can save the button state…) …
Not forgotten,
The switches have been changed to “switched to ground” and the code will be changed to use “INPUT_PULLUP” which provides internal pullup resistors instead of using the external pull down ones.
Cheers
Rob
ok sorry, thanks for the explanations
Hi Guys! ymnk’s here
Wow, I’m so happy that some of you will build this thing! I’m actually very proud of it, and I use it in all my music cause it is soooo convenient.
About few remarks :
BTW, thans to Dud for posting this here! Really appreciate the sharing!
Welcome, and thanks for sharing your design!
salut @YMNK et content de te voir ici
(Trad : hello and happy to see you here)
I use this picture as a guide.
The VIN on the right is the one that uses an on board power regulator and accepts 7 to 12 Volts DC.
DO NOT USE the 5V pin for that kind of voltages. Conversely, if you have a power supply which delivers 5 V DC, then do NOT USE the VIN input. In that case use the 5V input.
It appears that an analog input on a nano can either route the signal to an ADC or it can be treated like a digital input having an optional pullup resistor:
Except for A6 and A7 which are analog only.
wow, thanks for your answers
Ok I get it for the VIN. I will update my blueprint!
Yeah, thanks for sharing. I t sounded cool
The Input Pullup seems to be less well publicised than it should be.
Personally I stick with the VoltReg, but each to their own.
I like the idea of using the PB86’s with twin LED ( one for “selected” one for “playing” ) and writing the settings to EEPROM to restore after power cycle… I have ordered 10 each in white and black … It will use more I/O so would have to use a “Arduino Mega Pro” …
Really interested to see what can be done
Cheers
Rob
If you are using a nano clone then using an external 5v reg is not a bad decision as it is a component they often cheap out on to save a few cents
just noticed this morning that the clock input buffer is missing the pad connection between the diofdes and resistor… easy bodge to fix.
I have refreshed my memort on how to store bytes to eeprom, this will be critical on my next version using non latching push buttons.
The DAC boards arrived the other day, and the PCB’s left the airport in china on the 15th…
Hello everyone, first post on this forum.
Hope you don’t mind a question.
Being still a noob at Arduino I’d be interested in learning how I can change the inputs to pull-up so to omit the resistors.
Also, if I’d like to build it using a bare 328 I would be missing one pin as A6 and A7 are not present, could I change the mode selection toggles with one potentiometer to select the different modes, could someone enlighten me? Many thanks in advance
Are you asking how you can enable the internal pull up resistors for an input pin on an Arduino? This is all you need to do:
void setup() {
pinMode(pin, INPUT_PULLUP);
}
Hey Caustic,
Many thanks for getting back.
I have poorly written my question, my apologies.
I’m interested in knowing which bits of the specific code discussed in this thread needs changing.
My initiaL guess are those two bits of code to specify the INPUT_PULLUP?
And change the digital read to LOW?
for (int i = 2; i <= 13; i++) {
pinMode(i,INPUT);
}
for (int i = 2; i <= 13; i++) {
pinMode(i,INPUT);
int n = 13 - i;
//I inverted pin 6 and 5 ... shame on me
if (n == 6) {
n = 5;
} else if (n == 5) {
n = 6;
}
notes[n] = digitalRead(i) == HIGH;
}
Thanks