These are my first steps with the nrf24l01. I have tried to establish a connection between two chips,
but I did not succeed. Even if there was no transmitting chip these lines caused my serial monitor to overflow.
if (radio.available())
{
char text[32] = "";
radio.read(&text,sizeof(text));
Serial.println(text);
}
It had mostly empty lines in it but sometimes something like this:
}o?????'aaa
~N?????
I tried to change the channel and the pipe and even turned off my wifi but it didn't change anything.
I don't know what to do.. please help!
NRF_Read.ino (545 Bytes)