(msg)
| 530 | this.onDigitalChanged(port); |
| 531 | } |
| 532 | doSendString(msg) { |
| 533 | this.write(0xF0); // sysex begin |
| 534 | this.write(0x71); // STRING_DATA |
| 535 | this.writeString(msg); |
| 536 | this.write(0xF7); // sysex end |
| 537 | } |
| 538 | onDigitalChanged(port) { |
| 539 | const value = (port.inBank.read() >> port.shift) & 0xFF; |
| 540 | this.write(0x90 | (port.shift >> 3)); // DIGITAL_MESSAGE | port number |
no test coverage detected