Project 07 Keyboard Instrument

I got the problem solved by skipping the first two lines:

int buttons[6];
int buttons[0] = 2;

and starting at:

int notes[] = {262,294,330,394};

It works fine!