Midi
MIDI
¤
Manages all MIDI communication and target devices
- System class - (mostly for internal use) provides methods for interacting with all MIDI output ports and sending messages.
- Targets class - represents the desired MIDI output ports (aka targets) to use when sending commands.
- Commands class - provides easy to use (no MIDI knowledge required) methods for sending commands to targets.
Note
The corresponding commands will automatically be called when the active setlist, preset, or snapshot changes.
Source code in helixapi\midi.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|
commands = self.Commands(self.targets)
instance-attribute
¤
system = self.System()
instance-attribute
¤
targets = self.Targets(self.system)
instance-attribute
¤
Commands
¤
Commands class for MIDI controllable commands to the Helix device.
This class eliminates the need to understand MIDI and the specific MIDI messages and order needed to communicate with a Helix device. Instead, you simply call the commands you want (ex. change_to_setlist) and the class will take care of the rest.
Source code in helixapi\midi.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|
targets = targets
instance-attribute
¤
change_to_preset(preset_index)
¤
Change to a specific preset on the Helix device.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
preset_index |
int
|
The index of the preset to change to. |
required |
Source code in helixapi\midi.py
246 247 248 249 250 251 252 253 254 255 |
|
change_to_setlist(setlist_index)
¤
Change to a specific setlist on the Helix device.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
setlist_index |
int
|
The index of the setlist to change to. |
required |
Source code in helixapi\midi.py
235 236 237 238 239 240 241 242 243 244 |
|
change_to_snapshot(snapshot_index)
¤
Change to a specific snapshot on the Helix device.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
snapshot_index |
int
|
The index of the snapshot to change to. |
required |
Source code in helixapi\midi.py
257 258 259 260 261 262 263 264 265 266 |
|
next_preset()
¤
Change to the next preset on the Helix device.
Source code in helixapi\midi.py
268 269 270 271 272 273 274 |
|
next_snapshot()
¤
Change to the next snapshot on the Helix device.
Source code in helixapi\midi.py
284 285 286 287 288 289 290 |
|
previous_preset()
¤
Change to the previous preset on the Helix device.
Source code in helixapi\midi.py
276 277 278 279 280 281 282 |
|
previous_snapshot()
¤
Change to the previous snapshot on the Helix device.
Source code in helixapi\midi.py
292 293 294 295 296 297 298 |
|
toggle_toe()
¤
Toggles the toe switch on the Helix device.
Source code in helixapi\midi.py
300 301 302 303 304 305 306 |
|
toggle_tuner()
¤
Toggles the tuner on the Helix device.
Source code in helixapi\midi.py
308 309 310 311 312 313 314 |
|
System
¤
System class for managing MIDI output ports and sending messages.
Note
While this class is mostly for internal use, it can be used to list MIDI output ports and send messages. Most users should use the Commands class instead.
Source code in helixapi\midi.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
ports: List[str]
property
¤
Return a list of available MIDI output ports.
Returns:
Type | Description |
---|---|
List[str]
|
List[str]: A list of available MIDI output ports. |
send_cc(port, channel, control, value)
¤
Send a Control Change (CC) message to a MIDI target.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
port |
str
|
The name of the MIDI output port. |
required |
channel |
int
|
The MIDI channel to send the message on. |
required |
control |
int
|
The control number. |
required |
value |
int
|
The value to set the control to. |
required |
Source code in helixapi\midi.py
59 60 61 62 63 64 65 66 67 68 69 70 71 |
|
send_ccpc(port, cc_channel, cc_control, cc_value, pc_channel, pc_program)
¤
Send both Control Change (CC) and Program Change (PC) messages to a MIDI target.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
port |
str
|
The name of the MIDI output port. |
required |
cc_channel |
int
|
The MIDI channel to send the CC message on. |
required |
cc_control |
int
|
The control number for the CC message. |
required |
cc_value |
int
|
The value for the CC message. |
required |
pc_channel |
int
|
The MIDI channel to send the PC message on. |
required |
pc_program |
int
|
The program number for the PC message. |
required |
Source code in helixapi\midi.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
|
send_pc(port, channel, program)
¤
Send a Program Change (PC) message to a MIDI target.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
port |
str
|
The name of the MIDI output port. |
required |
channel |
int
|
The MIDI channel to send the message on. |
required |
program |
int
|
The program number to change to. |
required |
Source code in helixapi\midi.py
73 74 75 76 77 78 79 80 81 82 83 84 |
|
Targets
¤
Targets class for managing desired MIDI output ports.
"Targets" are the MIDI output ports you want commands to be sent to. Target names are saved in and loaded from the settings.yaml file.
Source code in helixapi\midi.py
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
|
add(target_name)
¤
Add a MIDI target to the list of targets if it is not already present and is available.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target_name |
str
|
The name of the MIDI target to add. |
required |
Source code in helixapi\midi.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
|
remove(target_name)
¤
Remove a MIDI target from the list of targets if it is present.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target_name |
str
|
The name of the MIDI target to remove. |
required |
Source code in helixapi\midi.py
213 214 215 216 217 218 219 220 221 222 223 |
|
save()
¤
Save the current list of MIDI targets to the settings.
Source code in helixapi\midi.py
189 190 191 192 193 194 195 196 |
|