This commit is contained in:
RogueMaster
2022-10-25 03:29:48 -04:00
parent 59a59b78e9
commit 86bdcd8094
5 changed files with 70 additions and 85 deletions

View File

@@ -17,8 +17,7 @@ extern "C" int32_t sam_app_yes(void* p) {
UNUSED(p);
voice.begin();
voice.say(
"Yes");
voice.say("Yes");
return 0;
}
@@ -27,8 +26,7 @@ extern "C" int32_t sam_app_no(void* p) {
UNUSED(p);
voice.begin();
voice.say(
"No");
voice.say("No");
return 0;
}