protected notePressed()

in src/app/keyboard.component.ts [71:74]


  protected notePressed(note: { note: string, octave: number, frequency: number }) {
    this.oscillatorNode = this.playTone(note.frequency);
    this.currentNote = [note.note, note.octave];
  }