CobraV2/receiver_module/nRF24L01_receiver.ino
foglar 868888ee11 Readme and directories changes
changed a typo in receiver
created doc directory with documentation
2024-01-28 20:02:11 +01:00

23 lines
595 B
C++

#include <SPI.h>
#include <nRF24L01.h>
#include <RF24.h>
RF24 radio(9, 8); // CE, CSN
const byte address[6] = "00001"; //address through which two modules communicate
void setup() {
while (!Serial)
;
Serial.begin(9600);
Serial.println("Reciver init");
radio.begin();
radio.openReadingPipe(0, address); //set the address
radio.startListening(); //Set module as receiver
}
void loop() {
//Read the data if available in buffer
if (radio.available()) {
char text[32] = { 0 };
radio.read(&text, sizeof(text));
Serial.println(text);
}
}