()
| 374 | this.write(enable ? 1 : 0); |
| 375 | } |
| 376 | doI2CConfig() { |
| 377 | this.write(0xF0); // SYSEX BEGIN |
| 378 | this.write(0x78); // I2C_CONFIG |
| 379 | this.write(0); //@@ implement delay |
| 380 | this.write(0); |
| 381 | this.write(0xF7); // SYSEX END |
| 382 | } |
| 383 | doI2CRead(address, count) { |
| 384 | if (undefined == count) { |
| 385 | return; |