Piano: Difference between revisions

From wikiluntti
No edit summary
Line 1: Line 1:
== Notes ==
== Notes ==


{{colbegin}}
Sonic Pi plays all piano keys. The command <code>play 70</code> means the 70th key, <code>play 71</code> plays the next to the right. Sonic Pi plays also decimal notes, try <code>play 71.67</code>. Also, you can play multiple notes at the time:
Sonic Pi plays all piano keys. The command <code>play 70</code> means the 70th key, <code>play 71</code> plays the next to the right. Sonic Pi plays also decimal notes, try <code>play 71.67</code>. Also, you can play multiple notes at the time:


Line 9: Line 8:
play 79
play 79
</syntaxhighlight>
</syntaxhighlight>
{{colend}}
 
 
== Melody ==
 
Use sleep command in between.
 
<syntaxhighlight >
play 72
sleep 0.5
play 75
sleep 0.5
play 79
</syntaxhighlight>

Revision as of 16:05, 12 October 2020

Notes

Sonic Pi plays all piano keys. The command play 70 means the 70th key, play 71 plays the next to the right. Sonic Pi plays also decimal notes, try play 71.67. Also, you can play multiple notes at the time:

play 72
play 75
play 79


Melody

Use sleep command in between.

play 72
sleep 0.5
play 75
sleep 0.5
play 79