1

I am using ESP8266 SMING framework.

I would like to adjust the signal strength of the soft-ap. Are there any APIs to do this?

guagay_wk
  • 26,337
  • 54
  • 186
  • 295

2 Answers2

1

Reviewing the Espressif sdk yields no such option for the AP mode. It seems like you are out of luck.

Baruch Even
  • 2,581
  • 1
  • 17
  • 23
1

I think you'll find that you can do that with

WiFi.setOutputPower(20.5);  // set highest WiFi power

I'm using the Arduino API.
Using the (free) Android wifi analyzer app
https://play.google.com/store/apps/details?id=com.farproc.wifi.analyzer&hl=en_GB
I observed an increase in signal strength

kevstev01
  • 330
  • 5
  • 13