From 2f45300f8ca7ad90a6c0fad76c6dd05471d4e06e Mon Sep 17 00:00:00 2001 From: Guillaume Jenkins Date: Tue, 31 Jul 2018 15:44:58 -0400 Subject: [PATCH] Fix wrong snippet in pins ic2 help (#1004) --- docs/reference/pins/i2c-write-number.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/pins/i2c-write-number.md b/docs/reference/pins/i2c-write-number.md index 27731bb2..3b861350 100644 --- a/docs/reference/pins/i2c-write-number.md +++ b/docs/reference/pins/i2c-write-number.md @@ -25,7 +25,7 @@ This function needs real hardware to work with. It's not supported in the simula Send the value `2055` to the 7-bit I2C address as a 32-bit number. The `32`, big-endian, and integer chosen for the format. ```blocks -pins.i2cWriteNumber(32, 2055, NumberFormat.Int32BE); +pins.i2cWriteNumber(32, 2055, NumberFormat.Int32BE, false); ``` ## See also