
Vowel synthesizer using digital resonators. This program can run without LCD display. ディジタル共振器を使った合成母音ジェネレータ.LCD表示器なしでも動く.
Dependencies: UITDSP_ADDA UIT_ACM1602NI UIT_AQM1602 mbed
Revision 2:6a0a8374b4ee, committed 2014-12-02
- Comitter:
- MikamiUitOpen
- Date:
- Tue Dec 02 03:56:18 2014 +0000
- Parent:
- 1:aab9254a774d
- Child:
- 3:33dbb9df0728
- Commit message:
- 3
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Tue Dec 02 03:10:09 2014 +0000 +++ b/main.cpp Tue Dec 02 03:56:18 2014 +0000 @@ -49,7 +49,7 @@ Acm1602Ni lcd; // objetc for display using LCD lcd.Clear(); - lcd.WriteStringXY("Vowel Synthesize", 0, 0); + lcd.WriteStringXY("Synthetic Vowel", 0, 0); int sw = (sw8_ << 3) | (sw4_ << 2) | (sw2_ << 1) | sw1_; if (sw > 5) sw = 5; @@ -81,7 +81,7 @@ float yn = rd.Execute(vn); // 放射の効果 //----------------------------------------------- - myDac_.Write(yn); // Write to DAC + myDac_.Write(yn); // Write to DAC counter--; }