You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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));
}
}
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....
The text was updated successfully, but these errors were encountered: