stevemarple / SoftWire

Software I2C implementation for Arduino and other Wiring-type environments
GNU Lesser General Public License v2.1
136 stars 31 forks source link

Can't compile the SoftWire_MLX90614 example #1

Closed mdanetzky closed 8 years ago

mdanetzky commented 8 years ago

Line 72 is referencing a non-existent method (rawWrite):

errors += i2c.rawWrite(command);

Changing it to:

errors += i2c.write(command);

seems to have solved the issue.

stevemarple commented 8 years ago

Thanks, rawWrite() was renamed in 29776161178517a81da1b52ea0cc85d2193030f0 but the example was not changed.