Stop all the notes on all channels.
(self)
| 176 | return True |
| 177 | |
| 178 | def stop_everything(self): |
| 179 | """Stop all the notes on all channels.""" |
| 180 | for x in range(118): |
| 181 | for c in range(16): |
| 182 | self.stop_Note(x, c) |
| 183 | |
| 184 | def play_NoteContainer(self, nc, channel=1, velocity=100): |
| 185 | """Play the Notes in the NoteContainer nc.""" |
no test coverage detected