(value)
| 338 | } |
| 339 | |
| 340 | writeWithoutResponse(value) { |
| 341 | value = typedValueToBuffer(this.type, value); |
| 342 | this._writeValue(this.connection, this.handle, value); |
| 343 | } |
| 344 | |
| 345 | writeValue(value) { |
| 346 | value = typedValueToBuffer(this.type, value); |
nothing calls this directly
no test coverage detected