Sets the value of a control channel in the software bus * * @param {string} channelName A string containing the channel name. * @param {number} value The value to be set.
(channelName, value)
| 160 | * @param {number} value The value to be set. |
| 161 | */ |
| 162 | setControlChannel(channelName, value) { |
| 163 | this.port.postMessage(["setControlChannel", |
| 164 | channelName, value]); |
| 165 | } |
| 166 | |
| 167 | /** Sets the value of a string channel in the software bus |
| 168 | * |
no test coverage detected