1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

WiFi library compatibility fixes

This commit is contained in:
Ivan Grokhotkov
2014-12-29 01:20:27 +03:00
parent 55f07f1e08
commit 4944a8fb5f
3 changed files with 11 additions and 1 deletions

View File

@ -137,6 +137,15 @@ public:
*/
char* SSID();
/*
* Return the current network RSSI. Note: this is just a stub, there is no way to
* get the RSSI in the Espressif SDK yet.
*
* return: RSSI value (currently 0)
*/
int32_t RSSI() { return 0; }
/*
* Start scan WiFi networks available
*