lcd - SPI_IIC_LCD library on Arduino -
spi_iic_lcd/mcp23008.cpp:23:28: error: call of overloaded ‘write(int)’ ambiguous
if type of error when trying compile spi_iic_lcd library arduino 1.0 need edit mcp23008.cpp , insert (uint8_t) wire.write called so:
wire.write((uint8_t)0x00);
i took me while figure out, can save time posting this.
Comments
Post a Comment