(buffer)
| 645 | this.#state = undefined; |
| 646 | } |
| 647 | write(buffer) { |
| 648 | this.#firmata.doI2CWrite(this.#state.address, buffer); |
| 649 | } |
| 650 | read(count) { |
| 651 | if (!count) |
| 652 | return this.#state.received.shift(); |
nothing calls this directly
no test coverage detected