Arduino Stack Exchange is a question and answer site for developers of open-source hardware and software that is compatible with Arduino. It's 100% free, no registration required.

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

I have a ESP8266 and I wonder if it is possible to create a Wi-Fi signal repeater using this module.

  • I can create a network so that devices connect it.
  • I can connect to an existing network.

But I can not connect the network created with the network that I connected

Does anyone know how to do this? or you have any examples?

share|improve this question

closed as off-topic by Mikael Patel, Nick Gammon Mar 1 at 6:17

This question appears to be off-topic. The users who voted to close gave this specific reason:

  • "This question does not appear to be about Arduino, within the scope defined in the help center." – Mikael Patel, Nick Gammon
If this question can be reworded to fit the rules in the help center, please edit the question.

4  
Even if that is possible, the speed will be very low. – Kira San Jan 4 at 23:51

You can't have a single ESP8266 be both an access point and a client, at least not using the exposed API (recall that the Arduino libaries do not implement much functionality themselves, all they do is call the underlying RTOS API).

Also, a signal repeater is not a radio-only device. It would have to understand the low-level 802.11* protocols and packet types so you don't end up with forwarding loops. You can't do it just by connecting a pair of 8266s back-to-back over SPI and blindly forward packets; there is a lot of networking code that would have to be written.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.