Skip to content

Error compiling for board Arduino Nano #16

Description

@dananjayalakshitha

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....

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions