Audiokit -> No more effects with "kit.pinVolumeDown(); and kit.pinVolumeUp();" #1431
-
I tried today the new update of arduino-audiotools with the new "arduino-audio-driver" library,
my setup is (off, on, on, off, off) with AudioKitEs8388V1,tried with AudioKitEs8388V2 but gives no soud at all. here's the complete sketch i use:
Have i missed something or done something wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
I did that because the key5 and key6 did not respond correctly,one gives me a mute and the other the max volume |
Beta Was this translation helpful? Give feedback.
-
To increase the volume you would need to do something as follows: void up(bool, int, void*) {
kit.setVolume(kit.getVolume()+0.1);
} |
Beta Was this translation helpful? Give feedback.
-
Ok,it seems to be quite different as before :) |
Beta Was this translation helpful? Give feedback.
-
Yes, but it has the advantage, that you can decide on the step size |
Beta Was this translation helpful? Give feedback.
To increase the volume you would need to do something as follows: