Hello,
I was trying to find out if its possible to send data with the nrf24 to the esp82.
Example:
Nrf24 sends "hello" thrue radio signals > ESP8266 receives it and can display the received data in the serial monitor.
Hello,
I was trying to find out if its possible to send data with the nrf24 to the esp82.
Example:
Nrf24 sends "hello" thrue radio signals > ESP8266 receives it and can display the received data in the serial monitor.
I'd be interested to know if there is a reasonable quality solution to this, especially when a standard library emerges.
Here is a discussion and apparently also code which claims to support an nrf24l01 on an esp8266 device, but I have not looked at it in any detail.
And here is the missing link
6v6gt:
I'd be interested to know if there is a reasonable quality solution to this, especially when a standard library emerges.
Here is a discussion and apparently also code which claims to support an nrf24l01 on an esp8266 device, but I have not looked at it in any detail.
First of all thank you for your answer! I would highly appreciate if you could link the discussion to me
Regards,
I see little chance of an ESP8266 receiving data that has been transmitted by an nRF24 - which is what your question seems to be about.
AFAIK the nRF24 is specifically designed to work with other nRF24s and nothing else. And the ESP8266 is designed to communicate as a WiFi device.
Neither of them is a general purpose 2.4Ghz transmitter / receiver.
On the other hand if you are wondering if one Arduino could be physically connected to both an nRF24 and an ESP8266 I assume the answer is YES. Then the Arduino could receive a message using the nRF24 (a message sent by another nRF24) and re-transmit it using the ESP8266.
nRF24 .....><.....nRF24___Arduino____ESP8266.....><.......another wifi device
...R
Hello,
I am looking for some "project Guidance", I'm currently sending data with an nrf2401l to another nrf2401l which works fine but, after i receive the data i wanna send the received data to a webserver. I tried hooking the receiving arduino with a nrf2401l and a esp8266 up but, I can only choose 1 board to upload the code to. I can either upload it to the arduino board or the generic esp8266 module board (using the arduino esp8266 ide)
I've added the link but now realise that your goal might be something other than I thought it was.
I assumed you simply wanted to integrate a nrf24L01 with an ESP8266 instead of using say a Uno.
I agree with Robin2 that there is no chance of a direct radio link between the two devices.
Each board must be programmed separately. You'll need two sketches for the Arduinos, and one for the esp8266, which must be compiled and uploaded separately. You can open multiple instances of the IDE (except on Mac), and connect each instance to a specific board.
This seems to be the exact same subject as your other Thread to which I have already contributed.
I am suggesting to the Moderator to merge them
...R