Skip to content

Commit

Permalink
Correct notation of sharps/flats to match SunVox
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewryanscott committed Dec 6, 2016
1 parent e5afbf6 commit dd89760
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions sunvox/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@


class NOTECMD(IntEnum):
(C0, d0, D0, e0, E0, F0, g0, G0, a0, A0, b0, B0,
C1, d1, D1, e1, E1, F1, g1, G1, a1, A1, b1, B1,
C2, d2, D2, e2, E2, F2, g2, G2, a2, A2, b2, B2,
C3, d3, D3, e3, E3, F3, g3, G3, a3, A3, b3, B3,
C4, d4, D4, e4, E4, F4, g4, G4, a4, A4, b4, B4,
C5, d5, D5, e5, E5, F5, g5, G5, a5, A5, b5, B5,
C6, d6, D6, e6, E6, F6, g6, G6, a6, A6, b6, B6,
C7, d7, D7, e7, E7, F7, g7, G7, a7, A7, b7, B7,
C8, d8, D8, e8, E8, F8, g8, G8, a8, A8, b8, B8,
C9, d9, D9, e9, E9, F9, g9, G9, a9, A9, b9, B9) = range(1, 121)
(C0, c0, D0, d0, E0, F0, f0, G0, g0, A0, a0, B0,
C1, c1, D1, d1, E1, F1, f1, G1, g1, A1, a1, B1,
C2, c2, D2, d2, E2, F2, f2, G2, g2, A2, a2, B2,
C3, c3, D3, d3, E3, F3, f3, G3, g3, A3, a3, B3,
C4, c4, D4, d4, E4, F4, f4, G4, g4, A4, a4, B4,
C5, c5, D5, d5, E5, F5, f5, G5, g5, A5, a5, B5,
C6, c6, D6, d6, E6, F6, f6, G6, g6, A6, a6, B6,
C7, c7, D7, d7, E7, F7, f7, G7, g7, A7, a7, B7,
C8, c8, D8, d8, E8, F8, f8, G8, g8, A8, a8, B8,
C9, c9, D9, d9, E9, F9, f9, G9, g9, A9, a9, B9) = range(1, 121)
EMPTY = 0
NOTE_OFF = 128
ALL_NOTES_OFF = 129 # notes of all synths off
Expand Down

0 comments on commit dd89760

Please sign in to comment.