Przeglądaj źródła

Update AP_PROBEREQRECVED example message (#1956)

The example for the eventmon registration for AP_PROBEREQRECVED was displaying "STATION DISCONNECTED" when it should say "PROBE REQUEST RECEIVED".
dnc40085 7 lat temu
rodzic
commit
cba40213c6
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      docs/en/modules/wifi.md

+ 1 - 1
docs/en/modules/wifi.md

@@ -1560,7 +1560,7 @@ T: Table returned by event.
  end)
 
  wifi.eventmon.register(wifi.eventmon.AP_PROBEREQRECVED, function(T)
- print("\n\tAP - STATION DISCONNECTED".."\n\tMAC: ".. T.MAC.."\n\tRSSI: "..T.RSSI)
+ print("\n\tAP - PROBE REQUEST RECEIVED".."\n\tMAC: ".. T.MAC.."\n\tRSSI: "..T.RSSI)
  end)
 ```
 #### See also