I am trying to send and receive data using I2C between an Arduino Uno and an ATTiny85. The Arduino Uno is using the Wire library. The ATTiny85 is using the TinyWire library and is programmed (and powered) using the Sparkfun Tiny AVR Programmer.
I am not receiving any data.
Arduino Uno I2C master code
#include <Wire.h>
#define SLAVE_ADDR 0x50
void setup()
{
Wire.begin();
Serial.begin(9600);
}
void loop()
{
Wire.requestFrom(SLAVE_ADDR, 1);
while(Wire.available())
{
byte byteReceived = Wire.read();
Serial.println(byteReceived, DEC);
}
}
ATTiny85 I2C slave code
#include "TinyWireS.h"
#define SLAVE_ADDR 0x50
void setup()
{
TinyWireS.begin(SLAVE_ADDR);
TinyWireS.onRequest(requestEvent);
}
void loop()
{
}
void requestEvent()
{
byte byteToSend = 23;
TinyWireS.send(byteToSend);
}
2 Answers 2
I modified your Uno sketch slightly to add a delay:
#include <Wire.h>
#define SLAVE_ADDR 0x50
void setup()
{
Wire.begin();
Serial.begin(9600);
}
void loop()
{
Wire.requestFrom(SLAVE_ADDR, 1);
if (Wire.available())
{
byte byteReceived = Wire.read();
Serial.println(byteReceived, DEC);
}
delay (1000);
}
Upon testing, it worked perfectly!
23
23
23
23
23
23
23
23
23
23
23
23
I suggest a wiring error. Check you have:
Uno ATtiny85
--------------------
A4 pin 5 (SDA)
A5 pin 7 (SCL)
+5V pin 8
Gnd pin 4
I think the problem is (assuming you've got the pins straight) is that there's no time for the byte to get to the Uno. Try while(!Wire.available())
between requestFrom...
and the while(Wire.available())
-
Wire.requestFrom
does not return until data is available, or if the slave device cannot be found. It returns the numbers of bytes available.2015年08月14日 01:28:22 +00:00Commented Aug 14, 2015 at 1:28
Explore related questions
See similar questions with these tags.