-
Notifications
You must be signed in to change notification settings - Fork 89
Open
Description
i got a message while compiling the code on Arduino IDE.
`#include <SPI.h>
#include <nRF24L01.h>
#include <RF24.h>
#include<Adafruit_SSD1306.h>
const uint64_t pipeIn = 0xE8E8F0F0E1LL; //pipe address must be same with transmitter
RF24 radio(7, 8);
struct MyData {
byte p;
};
MyData data;
void setup()
{
Serial.begin(9600);
radio.begin();
radio.setAutoAck(false);
radio.setDataRate(RF24_250KBPS);
radio.openReadingPipe(1, pipeIn);
radio.startListening();
pinMode(2, OUTPUT);
}
void recvData()
{
if ( radio.available() )
{
radio.read(&data, sizeof(MyData));
if (data.p < 50) {
digitalWrite(2, HIGH);
}
else {
digitalWrite(2, LOW);
}
}
}
void loop()
{
recvData();
Serial.print("Range: ");
Serial.print(data.p);
}
`
exit status 1
Error compiling for board Arduino Nano.
im using nRF24L01 module with arduino nano. please help me....
Metadata
Metadata
Assignees
Labels
No labels