Modifying the Audio Kit Keys - Success #15
Replies: 5 comments 4 replies
-
Wow good work! Thanks for the picture. I was really curious to see it. Other values will also work. I tried just to get the most stable result. My code is also online now. I tried to get it a bit more stable to avoid glitches by reading voltage transitions. You have really good readings. |
Beta Was this translation helpful? Give feedback.
-
It went well, once I realised to bend the legs to the right shape and cut them. Just seen your upload... and downloaded the new version. Cannot wait to try it :) |
Beta Was this translation helpful? Give feedback.
-
I tend to use a frowned on method for SMD. The pad is dabbed with solder flux, then an older solder tip is used which has scrapes etc on it (or can use rough sandpaper on the tip of a new one). Solder will then stick to it and form a small bead on the end. I put the bead to the SMD part that's sitting on the pad and the solder will flow fine. The flux makes for a good finish. The code works great. I turned off the constant VT100 output for the Arduino serial monitor and enabled the Keys serial output line. A bit of figuring out by watching the screen while pressing saw how to step through the functions. A possible issue, is that files seem to be somewhat random when they load. Luckily perhaps for your knowledge of a problem, is my own files run from 1.wav to 99.wav and are split into banks of 10 by sound type. The new code will load something like 6.wav, 4.wav, 5.wav, 11.wav, 3.wav, 14.wav. The MMC driver might be looking for letters? Good luck with the screens code... can't wait for that either :) |
Beta Was this translation helpful? Give feedback.
-
@Slider2732 Is the link to your picture working still? I couldn't see one when I visited the site. @marcel-licence Is the mod to change the keys required? What functions will not be available if I don't do the mod? If I do the mod what do I get. Thanks! |
Beta Was this translation helpful? Give feedback.
-
Sorry for the late reply. Will try to upload it here - |
Beta Was this translation helpful? Give feedback.
-
Marcel's latest video shows how to remove and replace some resistors on the Audio Kit V2.2 board.
Doing so enables the onboard 6 Keys to have full functionality.
Video here: https://www.youtube.com/watch?v=r0af0DB1R68
I only had through hole 'regular' resistors, which were 1.5K rather than 1.8K
Tried the conversion anyway :)
It works!
Pic of the conversion: https://gofile.io/d/WNVclW
(IMG_3679.JPG)
Here's the test code:
int reading;
void setup()
{
pinMode(36, INPUT);
Serial.begin(115200);
}
void loop()
{
reading = analogRead(36);
Serial.println(reading);
}
With the following readings, based on multiple presses:
No key pressed - 4095
Key 1 - 0
Key 2 - 368-384
Key 3 - 794-800
Key 4 - 1125-1132
Key 5-- 1389-1398
Key 6 - 1618-1625
A decent enough range between each Key.
Hope it helps those who may have some trepidation with the conversion. It can look like mine and still work!
Beta Was this translation helpful? Give feedback.
All reactions