mirror of
https://github.com/lumapu/ahoy.git
synced 2025-04-29 10:16:21 +02:00
WiFi with Ethernet functional
This commit is contained in:
parent
b98e702ad8
commit
e3fdb04f0c
2 changed files with 2 additions and 9 deletions
|
@ -37,6 +37,8 @@ class AhoyEthernet : public AhoyWifi {
|
|||
void OnEvent(WiFiEvent_t event) {
|
||||
switch(event) {
|
||||
case SYSTEM_EVENT_STA_CONNECTED:
|
||||
mWifiConnecting = false;
|
||||
[[fallthrough]];
|
||||
case ARDUINO_EVENT_ETH_CONNECTED:
|
||||
if(NetworkState::CONNECTED != mStatus) {
|
||||
mStatus = NetworkState::CONNECTED;
|
||||
|
|
|
@ -36,11 +36,7 @@ class AhoyWifiAp {
|
|||
|
||||
ah::welcome(mIp.toString(), String(F("Password: ") + String(mCfg->apPwd)));
|
||||
|
||||
#if defined(ETHERNET)
|
||||
WiFi.mode(WIFI_AP);
|
||||
#else
|
||||
WiFi.mode(WIFI_AP_STA);
|
||||
#endif
|
||||
WiFi.softAPConfig(mIp, mIp, IPAddress(255, 255, 255, 0));
|
||||
WiFi.softAP(WIFI_AP_SSID, mCfg->apPwd);
|
||||
|
||||
|
@ -60,12 +56,7 @@ class AhoyWifiAp {
|
|||
|
||||
mDns.stop();
|
||||
WiFi.softAPdisconnect();
|
||||
#if defined(ETHERNET)
|
||||
WiFi.mode(WIFI_OFF);
|
||||
#else
|
||||
WiFi.scanDelete();
|
||||
WiFi.mode(WIFI_STA);
|
||||
#endif
|
||||
|
||||
mEnabled = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue