(x, y, width, height)
| 419 | return this.messageWait(0x01); // POCO_COMMAND |
| 420 | } |
| 421 | doPocoBegin(x, y, width, height) { |
| 422 | this.write(0xF0); // SYSEX BEGIN |
| 423 | this.write(0x01); // POCO_COMMAND (user command) |
| 424 | this.write(0x02); // POCO begin |
| 425 | this.write14Bits(x); |
| 426 | this.write14Bits(y); |
| 427 | this.write14Bits(width); |
| 428 | this.write14Bits(height); |
| 429 | this.write(0xF7); // SYSEX END |
| 430 | } |
| 431 | doPocoEnd() { |
| 432 | this.write(0xF0); // SYSEX BEGIN |
| 433 | this.write(0x01); // POCO_COMMAND (user command) |
no test coverage detected