Skip to content

Commit

Permalink
馃槀
Browse files Browse the repository at this point in the history
  • Loading branch information
johntalton committed May 26, 2024
1 parent 4d2c06f commit 1783ea6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@johntalton/and-other-delights",
"version": "8.0.0",
"version": "8.0.1",
"license": "MIT",
"main": "./lib/index.js",
"exports": {
Expand Down
4 changes: 2 additions & 2 deletions src/i2c-addressed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ export class I2CAddressedBus implements _I2CAddressedBus {
}

constructor(bus: I2CBus, address: I2CAddress, {
sharedReadBuffer = undefined,
sharedReadBuffer = undefined,
allocOnRead = true,
allowMixedReadBuffers = false,
maxReadLength = WARN_READ_LENGTH,
maxWriteLength = WARN_WRITE_LENGTH,
validateReadWriteLengths = true
}: Partial<ABOptions>) {
}: Partial<ABOptions> = {}) {
this.address = address
this.bus = bus

Expand Down

0 comments on commit 1783ea6

Please sign in to comment.