* Sets the value of a control channel in csound.Csound. * * @param {string} name The channel to be set. * @param {number} value The value to set the channel.
(name, value)
| 213 | * @param {number} value The value to set the channel. |
| 214 | */ |
| 215 | function SetChannel(name, value) { |
| 216 | csound.Csound.setControlChannel(name, value); |
| 217 | } |
| 218 | |
| 219 | /** |
| 220 | * Sends a MIDI channel message to Csound's MIDI input. |
nothing calls this directly
no test coverage detected