git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

commit 22f287b1b643b23551aa81cc29bc8852ec78133d
parent a994a6acf5892e4d39edd9fc464db20191306693
Author: bbbbbr <bbbbbr@users.noreply.github.com>
Date:   Thu,  9 Jan 2025 00:08:31 -0800

Examples: MegaDuck Laptop: document speech command phrase numbers (#740)


Diffstat:
Mgbdk-lib/examples/megaduck/laptop_speech/Readme.md17+++++++++++++++++
Mgbdk-lib/examples/megaduck/laptop_speech/src/main.c17+++++++++++++++++
2 files changed, 34 insertions(+), 0 deletions(-)

diff --git a/gbdk-lib/examples/megaduck/laptop_speech/Readme.md b/gbdk-lib/examples/megaduck/laptop_speech/Readme.md @@ -4,3 +4,20 @@ - Triggers playback of the built-in Speech Phrases +# Spanish Model Phrases +- 1. "Genial" (brilliant) +- 2. "Estupendo" (great) +- 3. "Fantástico" (fantastic) +- 4. "No, inténtalo otra vez." (no, try it again) +- 5. "No, prueba una vez más" (no, try once again) +- 6. "Vuelve a intentarlo" (try again) + +# German Model Phrases +- 1. "Ja, sehr gut" (yes, very good) +- 2. "Gut gemacht" (well done) +- 3. "Super" (great, awesome) +- 4. "Uh uh, probier's noch mal" (uh oh, try again) +- 5. "Uh uh, versuch's noch einmal" (give it another try) +- 6. "Oooh, schade" (ohh, what a pity) + + diff --git a/gbdk-lib/examples/megaduck/laptop_speech/src/main.c b/gbdk-lib/examples/megaduck/laptop_speech/src/main.c @@ -14,6 +14,23 @@ // The input range is 1-6 (DUCK_IO_SPEECH_CMD_MIN - DUCK_IO_SPEECH_CMD_MAX) // Playback of one sample can be interrupted by request for playback of another sample // +// +// # Spanish Model Phrases +// - 1. "Genial" (brilliant) +// - 2. "Estupendo" (great) +// - 3. "Fantástico" (fantastic) +// - 4. "No, inténtalo otra vez." (no, try it again) +// - 5. "No, prueba una vez más" (no, try once again) +// - 6. "Vuelve a intentarlo" (try again) +// +// # German Model Phrases +// - 1. "Ja, sehr gut" (yes, very good) +// - 2. "Gut gemacht" (well done) +// - 3. "Super" (great, awesome) +// - 4. "Uh uh, probier's noch mal" (uh oh, try again) +// - 5. "Uh uh, versuch's noch einmal" (give it another try) +// - 6. "Oooh, schade" (ohh, what a pity) +// // Returns success or failure bool duck_io_send_speech_cmd(uint8_t speech_sample_num) {

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.