Skip to content

Commit f2c6bb0

Browse files
authored
RDKEMW-13124: Wi‑Fi networks in the picker are not ordered by signal strength (#6455)
Reason for change: Changed the WiFiplugin.md file signalStrength & frequency as NUMBER for onAvailableSSID. Test Procedure: Check the doc reports properly Priority:P1 Risks: Medium Signed-off-by: Gururaaja ESR<Gururaja_ErodeSriranganRamlingham@comcast.com>
1 parent 63ea9ad commit f2c6bb0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/api/WifiPlugin.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,8 +1096,8 @@ Triggered when the `scan` method is called and SSIDs are obtained. The event con
10961096
| params.ssids[#] | object | |
10971097
| params.ssids[#].ssid | string | The paired SSID |
10981098
| params.ssids[#].security | integer | The security mode. See `getSupportedSecurityModes` |
1099-
| params.ssids[#].signalStrength | string | The RSSI value in dBm |
1100-
| params.ssids[#].frequency | string | The supported frequency for this SSID in GHz |
1099+
| params.ssids[#].signalStrength | integer | The RSSI value in dBm |
1100+
| params.ssids[#].frequency | number | The supported frequency for this SSID in GHz |
11011101
| params.moreData | boolean | When `true`, scanning is not complete and more SSIDs are returned as separate events |
11021102

11031103
### Example
@@ -1111,8 +1111,8 @@ Triggered when the `scan` method is called and SSIDs are obtained. The event con
11111111
{
11121112
"ssid": "123412341234",
11131113
"security": 2,
1114-
"signalStrength": "-27.000000",
1115-
"frequency": "2.442000"
1114+
"signalStrength": -27,
1115+
"frequency": 2.4
11161116
}
11171117
],
11181118
"moreData": true

0 commit comments

Comments
 (0)