Skip to content

Commit d80de31

Browse files
committed
Merge pull request #685 from nkolban/master
Issue #589. Design and implementation of wifi.getStatus()
2 parents 7658c4c + 73d6e30 commit d80de31

File tree

4 files changed

+97
-23
lines changed

4 files changed

+97
-23
lines changed

libs/network/esp8266/jswrap_esp8266.c

+68-17
Original file line numberDiff line numberDiff line change
@@ -708,12 +708,50 @@ void jswrap_ESP8266_wifi_createAP(
708708
os_printf("< jswrap_ESP8266_wifi_createAP\n");
709709
}
710710

711+
/*JSON{
712+
"type" : "staticmethod",
713+
"class" : "wifi",
714+
"name" : "getStatus",
715+
"generate" : "jswrap_ESP8266_wifi_getStatus",
716+
"return" : ["JsVar", "A boolean representing our WiFi status "]
717+
}
718+
* Retrieve the status of the current WiFi environment.
719+
* The object returned by this function will have some or all of the following properties:
720+
* * `isStation` - True if the ESP8266 is being a Station
721+
* * `isAP` - True if the ESP8266 is being an Access Point.
722+
* * `connectedStations` - An array of the stations connected to us if we are being an access point. This
723+
* array may be empty. Each entry in the array will itself be an object describing the station which,
724+
* at a minimum will contain `ip` being the IP address of the station.
725+
*/
726+
JsVar *jswrap_ESP8266_wifi_getStatus() {
727+
os_printf("> jswrap_ESP8266_wifi_getStatus\n");
728+
JsVar *jsWiFiStatus = jspNewObject(NULL, "WiFiStatus");
729+
uint8 opMode = wifi_get_opmode();
730+
jsvObjectSetChildAndUnLock(
731+
jsWiFiStatus,
732+
"isStation",
733+
jsvNewFromBool(opMode == STATION_MODE || opMode == STATIONAP_MODE));
734+
jsvObjectSetChildAndUnLock(
735+
jsWiFiStatus,
736+
"isAP",
737+
jsvNewFromBool(opMode == SOFTAP_MODE || opMode == STATIONAP_MODE));
738+
if (opMode == SOFTAP_MODE || opMode == STATIONAP_MODE) {
739+
jsvObjectSetChildAndUnLock(
740+
jsWiFiStatus,
741+
"connectedStations",
742+
jswrap_ESP8266WiFi_getConnectedStations());
743+
}
744+
os_printf("< jswrap_ESP8266_wifi_getStatus\n");
745+
return jsWiFiStatus;
746+
}
747+
748+
711749
/*JSON{
712750
"type" : "staticmethod",
713751
"class" : "wifi",
714752
"name" : "getIP",
715753
"generate" : "jswrap_ESP8266_wifi_getIP",
716-
"return" : ["JsVar", "A boolean representing our auto connect status"]
754+
"return" : ["JsVar", "A boolean representing our IP information"]
717755
}
718756
* Return IP information in an object which contains:
719757
* * ip - IP address
@@ -725,12 +763,12 @@ JsVar *jswrap_ESP8266_wifi_getIP() {
725763
struct ip_info info;
726764
wifi_get_ip_info(0, &info);
727765

728-
JsVar *ipInfo = jspNewObject(NULL, "Restart");
729-
jsvObjectSetChildAndUnLock(ipInfo, "ip", jsvNewFromInteger(info.ip.addr));
730-
jsvObjectSetChildAndUnLock(ipInfo, "netmask", jsvNewFromInteger(info.netmask.addr));
731-
jsvObjectSetChildAndUnLock(ipInfo, "gw", jsvNewFromInteger(info.gw.addr));
766+
JsVar *jsIpInfo = jspNewObject(NULL, "Restart");
767+
jsvObjectSetChildAndUnLock(jsIpInfo, "ip", jsvNewFromInteger(info.ip.addr));
768+
jsvObjectSetChildAndUnLock(jsIpInfo, "netmask", jsvNewFromInteger(info.netmask.addr));
769+
jsvObjectSetChildAndUnLock(jsIpInfo, "gw", jsvNewFromInteger(info.gw.addr));
732770
os_printf("< jswrap_ESP8266_wifi_getIP\n");
733-
return ipInfo;
771+
return jsIpInfo;
734772
}
735773

736774

@@ -1868,14 +1906,18 @@ static void scanCB(void *arg, STATUS status) {
18681906
*/
18691907

18701908
os_printf(">> scanCB\n");
1909+
if (g_jsScanCallback == NULL) {
1910+
os_printf("<< scanCB\n");
1911+
return;
1912+
}
18711913

18721914
// Set the opmode back to the value it was prior to the request for a scan.
18731915
assert(g_preWiFiScanMode != -1);
18741916
wifi_set_opmode_current(g_preWiFiScanMode);
18751917
g_preWiFiScanMode = -1;
18761918

18771919
// Create the Empty JS array that will be passed as a parameter to the callback.
1878-
JsVar *accessPointArray = jsvNewArray(NULL, 0);
1920+
JsVar *jsAccessPointArray = jsvNewArray(NULL, 0);
18791921
struct bss_info *bssInfo;
18801922

18811923
bssInfo = (struct bss_info *)arg;
@@ -1897,29 +1939,38 @@ static void scanCB(void *arg, STATUS status) {
18971939
// sint16 freq_offset
18981940
// ---
18991941
// Create, populate and add a child ...
1900-
JsVar *currentAccessPoint = jspNewObject(NULL, "AccessPoint");
1901-
jsvObjectSetChildAndUnLock(currentAccessPoint, "rssi", jsvNewFromInteger(bssInfo->rssi));
1902-
jsvObjectSetChildAndUnLock(currentAccessPoint, "channel", jsvNewFromInteger(bssInfo->channel));
1903-
jsvObjectSetChildAndUnLock(currentAccessPoint, "authMode", jsvNewFromInteger(bssInfo->authmode));
1904-
jsvObjectSetChildAndUnLock(currentAccessPoint, "isHidden", jsvNewFromBool(bssInfo->is_hidden));
1942+
JsVar *jsCurrentAccessPoint = jspNewObject(NULL, "AccessPoint");
1943+
jsvObjectSetChildAndUnLock(jsCurrentAccessPoint, "rssi", jsvNewFromInteger(bssInfo->rssi));
1944+
jsvObjectSetChildAndUnLock(jsCurrentAccessPoint, "channel", jsvNewFromInteger(bssInfo->channel));
1945+
jsvObjectSetChildAndUnLock(jsCurrentAccessPoint, "authMode", jsvNewFromInteger(bssInfo->authmode));
1946+
jsvObjectSetChildAndUnLock(jsCurrentAccessPoint, "isHidden", jsvNewFromBool(bssInfo->is_hidden));
19051947
// The SSID may **NOT** be NULL terminated ... so handle that.
19061948
char ssid[sizeof(bssInfo->ssid) + 1];
19071949
os_strncpy((char *)ssid, (char *)bssInfo->ssid, sizeof(bssInfo->ssid));
19081950
ssid[sizeof(ssid)-1] = '\0';
1909-
jsvObjectSetChildAndUnLock(currentAccessPoint, "ssid", jsvNewFromString(ssid));
1951+
jsvObjectSetChildAndUnLock(jsCurrentAccessPoint, "ssid", jsvNewFromString(ssid));
19101952

19111953
// Add the new record to the array
1912-
jsvArrayPush(accessPointArray, currentAccessPoint);
1954+
jsvArrayPush(jsAccessPointArray, jsCurrentAccessPoint);
1955+
jsvUnLock(jsCurrentAccessPoint);
19131956

19141957
os_printf(" - ssid: %s\n", bssInfo->ssid);
19151958
bssInfo = STAILQ_NEXT(bssInfo, next);
19161959
}
19171960

19181961
// We have now completed the scan callback, so now we can invoke the JS callback.
1919-
JsVar *params[1];
1920-
params[0] = accessPointArray;
1921-
jsiQueueEvents(NULL, g_jsScanCallback, params, 1);
1962+
// The parameters to the callback are:
1963+
// * err - An error indication - always null as we can't fail.
1964+
// * accessPointArray - An array of access point records.
1965+
JsVar *params[2];
1966+
params[0] = jsvNewNull();
1967+
params[1] = jsAccessPointArray;
1968+
jsiQueueEvents(NULL, g_jsScanCallback, params, 2);
1969+
1970+
jsvUnLock(jsAccessPointArray);
19221971
jsvUnLock(g_jsScanCallback);
1972+
jsvUnLock(params[0]);
1973+
g_jsScanCallback = NULL;
19231974
os_printf("<< scanCB\n");
19241975
}
19251976

libs/network/esp8266/jswrap_esp8266.h

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ void jswrap_ESP8266_wifi_connect(JsVar *jsSsid, JsVar *jsPassword, JsVar *jsOp
5050
void jswrap_ESP8266_wifi_createAP(JsVar *jsSsid, JsVar *jsPassword, JsVar *jsOptions, JsVar *jsCallback);
5151
void jswrap_ESP8266_wifi_disconnect(JsVar *jsOptions, JsVar *jsCallback);
5252
JsVar *jswrap_ESP8266_wifi_getIP();
53+
JsVar *jswrap_ESP8266_wifi_getStatus();
5354
void jswrap_ESP8266_wifi_scan(JsVar *jsCallback);
5455
void jswrap_ESP8266_wifi_stopAP(JsVar *jsOptions, JsVar *jsCallback);
5556

targets/esp8266/docs/05-User_Guide.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,10 @@ Scan for a list of the access points and pass them as an array into a callback f
247247

248248
`wifi.scan(callback)`
249249

250+
The signature for the callback function is:
251+
252+
callback(err, arrayOfAccessPoints)
253+
250254
The callback function is passed an array of records where each record describes a potential access point.
251255
Each record contains:
252256

@@ -259,14 +263,31 @@ Each record contains:
259263
For example:
260264

261265
var wifi = require("wifi");
262-
wifi.scan(function(arrayOfAcessPoints) {
266+
wifi.scan(function(err, arrayOfAcessPoints) {
263267
for (var i=0; i<arrayOfAcessPoints.length; i++) {
264268
print("Access point: " + i + " = " + JSON.stringify(arrayOfAcessPoints[i]));
265269
}
266270
});
267271

268272
----
269273

274+
##wifi.getSatus
275+
276+
Retrieve the status of the WiFi environment.
277+
278+
`wifi.getStatus()`
279+
280+
This function returns a JavaScript object that contains the current status of the WiFi environment. Depending
281+
on the board being used, the results may include the following:
282+
283+
* `isStation` - True if the device is being a Station
284+
* `isAP` - True if the device is being an Access Point.
285+
* `connectedStations` - An array of the stations connected to us if we are being an access point. This
286+
array may be empty. Each entry in the array will itself be an object describing the station which,
287+
at a minimum will contain `ip` being the IP address of the station.
288+
289+
----
290+
270291
##wifi.stopAP
271292

272293
Don't be an access point any longer.

targets/esp8266/jshardware.c

+6-5
Original file line numberDiff line numberDiff line change
@@ -653,20 +653,21 @@ void jshSPISetReceive(IOEventFlags device, bool isReceive) {
653653
/** Set-up I2C master for ESP8266, default pins are SCL:14, SDA:2. Only device I2C1 is supported
654654
* and only master mode. */
655655
void jshI2CSetup(IOEventFlags device, JshI2CInfo *info) {
656-
os_printf("ESP8266: jshI2CSetup SCL=%d SDA=%d bitrate=%d\n",
656+
os_printf("> jshI2CSetup: SCL=%d SDA=%d bitrate=%d\n",
657657
info->pinSCL, info->pinSDA, info->bitrate);
658658
if (device != EV_I2C1) {
659659
jsError("Only I2C1 supported");
660660
return;
661661
}
662662

663-
Pin scl = info->pinSCL >= 0 ? info->pinSCL : 14;
664-
Pin sda = info->pinSDA >= 0 ? info->pinSDA : 2;
663+
Pin scl = info->pinSCL !=PIN_UNDEFINED ? info->pinSCL : 14;
664+
Pin sda = info->pinSDA !=PIN_UNDEFINED ? info->pinSDA : 2;
665665

666-
jshPinSetState(info->pinSCL, JSHPINSTATE_I2C);
667-
jshPinSetState(info->pinSDA, JSHPINSTATE_I2C);
666+
jshPinSetState(scl, JSHPINSTATE_I2C);
667+
jshPinSetState(sda, JSHPINSTATE_I2C);
668668

669669
i2c_master_gpio_init(scl, sda, info->bitrate);
670+
os_printf("< jshI2CSetup\n");
670671
}
671672

672673
void jshI2CWrite(IOEventFlags device, unsigned char address, int nBytes,

0 commit comments

Comments
 (0)