We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67d9a17 commit 9a25dbfCopy full SHA for 9a25dbf
examples/examples-stream/streams-pins-audiokit/streams-pins-audiokit.ino
@@ -37,9 +37,9 @@ void setup() {
37
kit.addAction(PIN_KEY4, button4);
38
39
// example with actions using lambda expression
40
- auto up = []() { AudioKitStream::actionVolumeDown(); flite.say("Volume up"); };
+ auto up = []() { AudioKitStream::actionVolumeDown(); flite.say("Volume down"); };
41
kit.addAction(PIN_KEY5, up);
42
- auto down = []() { AudioKitStream::actionVolumeUp(); flite.say("Volume down"); };
+ auto down = []() { AudioKitStream::actionVolumeUp(); flite.say("Volume up"); };
43
kit.addAction(PIN_KEY6, down);
44
45
flite.say("Please push a button");
0 commit comments