You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to nrf24-...@googlegroups.com
Hello guys,
I was trying a simple chat example using 2 nRF24L01 and two Arduino Uno boards. My code is as below. I am getting some errors. When I run code I am getting errors as below. I am using RF24 library. // nRF24_Serial_Chat.ino: In function 'void nRF_receive()':
nRF24_Serial_Chat:110: error: void value not ignored as it ought to be //
I have shared the code. Please guys help me to get rid of the error. Its urgent.
/* nRF Serial Chat
this simple interactive serial chat over nRF that can be used for both sender and receiver as I swapped the TX & RX addr during read/write operation.
It read input from Serial Monitor and display the output to the other side Serial Monitor or 16x2 LCD (if available)... like a simple chat program.
Max payload is 32 bytes for radio but the serialEvent will chopped the entire buffer for next payload to be sent out sequentially.