Simple monitor for displaying MIDI status for digital pianos.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

8 行
145 B

  1. interface GetKeyOctave {
  2. (key: number): number,
  3. }
  4. const getOctave: GetKeyOctave = (key) => Math.floor(key / 12) - 1
  5. export default getOctave