This function is not supported in the simulator.
Write the specified number to the specified 7-bit I2C address in the specified number format.
pins.i2cWriteNumber(0, 0, NumberFormat.Int8LE);
address: the 7-bit I2C address to which to send valuevalue: the number to send to addressformat: the number format for value. Formats include
Int8LE, UInt8LE, Int16LE, UInt16LE, Int32LE,
Int8BE, UInt8BE, Int16BE, UInt16BE, and
Int32BE.The following example sends the value 2055 to the 7-bit I2C
address 32 in big-endian 32-bit integer format.
pins.i2cWriteNumber(32, 2055, NumberFormat.Int32BE);