Implement wifi update command

This commit is contained in:
Lorow
2024-11-10 22:43:11 +01:00
parent 9fb7e53824
commit 2e51a9ae42
4 changed files with 85 additions and 1 deletions

View File

@@ -8,6 +8,8 @@ std::unique_ptr<Command> CommandManager::createCommand(CommandType type)
return std::make_unique<PingCommand>();
case CommandType::SET_WIFI:
return std::make_unique<setWiFiCommand>(projectConfig);
case CommandType::UPDATE_WIFI:
return std::make_unique<updateWifiCommand>(projectConfig);
case CommandType::DELETE_NETWORK:
return std::make_unique<deleteWifiCommand>(projectConfig);
default: