Correcting a sound bug | The program has an obvious bug. Instead of pauses, it plays very low notes instead. To correct this, change the following lines:
1105 N1=0 to N1=1022 and 1107 N2=0 to N2=1022
When the TED sound frequency registers are set to "0", that the lowest possible sound it can produce. 1022 will produce a very high frequency sound instead, which is not audible. |
|