Pentatonic Piano

Event-triggered · Salamander Grand samples · C pentatonic
Click to activate audio · then trigger events below

hold multiple keys simultaneously to chord
samples loading after first click

// C pentatonic pools — any combo sounds consonant const pentatonicA = ['C2','D2','E2','G2','A2','C3','D3','E3']; const pentatonicB = ['G3','A3','C4','D4','E4','G4']; const pentatonicBloom = ['C5','E5','G5','A5']; // Wire to your events: function onPhotoA() { playNote(pentatonicA, 0.25 + Math.random() * 0.15); } function onPhotoB() { playNote(pentatonicB, 0.25 + Math.random() * 0.15); } function onConverge() { playNote(pentatonicBloom, 0.30 + Math.random() * 0.15); }