I am using the wifi101 library to send data via my wifi network. My arduino is connecting by means of a WINC1500 breakout.
When the app has a connection, I would like to be able to allow my app to report how strong the signal/connection is to the wifi network. Good for me to know when its connection is weak...
Is there a function or parameter I can read to tell me how strong its wifi connection is?
I am using the wifi101 library to send data via my wifi network. My arduino is connecting by means of a WINC1500 breakout.
When the app has a connection, I would like to be able to allow my app to report how strong the signal/connection is to the wifi network. Good for me to know when its connection is weak...
Is there a function or parameter I can read to tell me how strong its wifi connection is?
Great thanks --
Eric
On the ESP8266, the call is WiFi.RSSI()
The number will be between -100 and 0, and gives you an approximation of signal strength.
The following is a code snippet from Xcode that you can easily adapt for Arduino.