toio.cube.api.sound module¶
- class toio.cube.api.sound.SoundId(value, names=<not given>, *values, module=None, qualname=None, type=None, start=1, boundary=None)[source]¶
Bases:
IntEnum
Sound effect ID
References
https://toio.github.io/toio-spec/en/docs/ble_sound#sound-effect-id
- Enter = 0¶
- Selected = 1¶
- Cancel = 2¶
- Cursor = 3¶
- MatIn = 4¶
- MatOut = 5¶
- Get1 = 6¶
- Get2 = 7¶
- Get3 = 8¶
- Effect1 = 9¶
- Effect2 = 10¶
- class toio.cube.api.sound.Note(value, names=<not given>, *values, module=None, qualname=None, type=None, start=1, boundary=None)[source]¶
Bases:
IntEnum
Midi notes
References
https://toio.github.io/toio-spec/en/docs/ble_sound#midi-note-number-and-note-name
- C0 = 0¶
- CS0 = 1¶
- D0 = 2¶
- DS0 = 3¶
- E0 = 4¶
- F0 = 5¶
- FS0 = 6¶
- G0 = 7¶
- GS0 = 8¶
- A0 = 9¶
- AS0 = 10¶
- B0 = 11¶
- C1 = 12¶
- CS1 = 13¶
- D1 = 14¶
- DS1 = 15¶
- E1 = 16¶
- F1 = 17¶
- FS1 = 18¶
- G1 = 19¶
- GS1 = 20¶
- A1 = 21¶
- AS1 = 22¶
- B1 = 23¶
- C2 = 24¶
- CS2 = 25¶
- D2 = 26¶
- DS2 = 27¶
- E2 = 28¶
- F2 = 29¶
- FS2 = 30¶
- G2 = 31¶
- GS2 = 32¶
- A2 = 33¶
- AS2 = 34¶
- B2 = 35¶
- C3 = 36¶
- CS3 = 37¶
- D3 = 38¶
- DS3 = 39¶
- E3 = 40¶
- F3 = 41¶
- FS3 = 42¶
- G3 = 43¶
- GS3 = 44¶
- A3 = 45¶
- AS3 = 46¶
- B3 = 47¶
- C4 = 48¶
- CS4 = 49¶
- D4 = 50¶
- DS4 = 51¶
- E4 = 52¶
- F4 = 53¶
- FS4 = 54¶
- G4 = 55¶
- GS4 = 56¶
- A4 = 57¶
- AS4 = 58¶
- B4 = 59¶
- C5 = 60¶
- CS5 = 61¶
- D5 = 62¶
- DS5 = 63¶
- E5 = 64¶
- F5 = 65¶
- FS5 = 66¶
- G5 = 67¶
- GS5 = 68¶
- A5 = 69¶
- AS5 = 70¶
- B5 = 71¶
- C6 = 72¶
- CS6 = 73¶
- D6 = 74¶
- DS6 = 75¶
- E6 = 76¶
- F6 = 77¶
- FS6 = 78¶
- G6 = 79¶
- GS6 = 80¶
- A6 = 81¶
- AS6 = 82¶
- B6 = 83¶
- C7 = 84¶
- CS7 = 85¶
- D7 = 86¶
- DS7 = 87¶
- E7 = 88¶
- F7 = 89¶
- FS7 = 90¶
- G7 = 91¶
- GS7 = 92¶
- A7 = 93¶
- AS7 = 94¶
- B7 = 95¶
- C8 = 96¶
- CS8 = 97¶
- D8 = 98¶
- DS8 = 99¶
- E8 = 100¶
- F8 = 101¶
- FS8 = 102¶
- G8 = 103¶
- GS8 = 104¶
- A8 = 105¶
- AS8 = 106¶
- B8 = 107¶
- C9 = 108¶
- CS9 = 109¶
- D9 = 110¶
- DS9 = 111¶
- E9 = 112¶
- F9 = 113¶
- FS9 = 114¶
- G9 = 115¶
- GS9 = 116¶
- A9 = 117¶
- AS9 = 118¶
- B9 = 119¶
- C10 = 120¶
- CS10 = 121¶
- D10 = 122¶
- DS10 = 123¶
- E10 = 124¶
- F10 = 125¶
- FS10 = 126¶
- G10 = 127¶
- NO_SOUND = 128¶
- class toio.cube.api.sound.MidiNote(duration_ms: int, note: Note, volume: int)[source]¶
Bases:
object
Midi note
- duration_ms: int¶
- Duration of sounding note:Any fraction less than 10ms will be truncated.0 - 9: zero10 - 2550: duration [ms]
- volume: int¶
- Volume:0: off1 - 255: max volume
- class toio.cube.api.sound.PlaySoundEffect(sound_id: int, volume: int)[source]¶
Bases:
CubeCommand
Play sound effect command
References
https://toio.github.io/toio-spec/en/docs/ble_sound#playing-sound-effects
- class toio.cube.api.sound.PlayMidi(repeat: int, notes: list[toio.cube.api.sound.MidiNote] | tuple[toio.cube.api.sound.MidiNote, ...])[source]¶
Bases:
CubeCommand
Play midi notes command
References
https://toio.github.io/toio-spec/en/docs/ble_sound#playing-the-midi-note-numbers
- __init__(repeat: int, notes: list[toio.cube.api.sound.MidiNote] | tuple[toio.cube.api.sound.MidiNote, ...])[source]¶
- class toio.cube.api.sound.Stop[source]¶
Bases:
CubeCommand
Stop sound command
- class toio.cube.api.sound.Sound(interface: CubeInterface)[source]¶
Bases:
CubeCharacteristic
Sound characteristic
References
https://toio.github.io/toio-spec/en/docs/ble_sound
- static is_my_data(_payload: bytearray) None [source]¶
If payload is my characteristic response, this function returns CubeResponse object. Otherwise, it returns None.
- Parameters:
payload (GattReadData) – received data from the cube.
- __init__(interface: CubeInterface)[source]¶
- async play_sound_effect(sound_id: SoundId, volume: int)[source]¶
Send play sound effect command
- Parameters:
sound_id (SoundId) – Sound ID
volume (int) – Volume
- async play_midi(repeat: int, midi_notes: list[toio.cube.api.sound.MidiNote] | tuple[toio.cube.api.sound.MidiNote, ...])[source]¶
Send play midi note command