I am just getting started with the Arduino IDE and am presently trying to get
a Gravitec 7-segement shield up and running.
I have loaded some test sketches that work fine with the shield but I can not get the
sketch to work that uses the on board temperature sensor. I have downloaded and
unzipped the library (7SEg_SHIELD) but when I try to compile the program I get the following errors:
SEG7_SHIELD.pde: In function 'void loop()':
SEG7_SHIELD:79: error: 'class TwoWire' has no member named 'send'
As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.
SEG7_SHIELD:80: error: 'class TwoWire' has no member named 'send'
As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.
SEG7_SHIELD:86: error: 'class TwoWire' has no member named 'send'
Can anyone tell me what I am doing wrong?
John/KC2EQ