1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

BREAKING: Change return type of RSSI() (#7657)

This commit is contained in:
Develo
2020-10-15 18:00:30 -03:00
committed by GitHub
parent ccecbfe459
commit 0452f4728f
2 changed files with 2 additions and 2 deletions

View File

@ -686,7 +686,7 @@ String ESP8266WiFiSTAClass::BSSIDstr(void) {
* Return the current network RSSI.
* @return RSSI value
*/
int32_t ESP8266WiFiSTAClass::RSSI(void) {
int8_t ESP8266WiFiSTAClass::RSSI(void) {
return wifi_station_get_rssi();
}