default network hardware to detect w5000

This commit is contained in:
technyon
2023-02-03 21:06:14 +01:00
parent 4a39d47e09
commit d4bf7b0d7e
3 changed files with 19 additions and 14 deletions

View File

@@ -962,9 +962,9 @@ const std::vector<std::pair<String, String>> WebCfgServer::getNetworkDetectionOp
{
std::vector<std::pair<String, String>> options;
options.push_back(std::make_pair("0", "Disable W5500 (Wifi only)"));
options.push_back(std::make_pair("1", "W5500 (GPIO CS=5; SCK=18; MISO=19; MOSI=23; RST=33)"));
options.push_back(std::make_pair("2", "M5Stack Atom POE (W5500)"));
options.push_back(std::make_pair("1", "Disable W5500 (Wifi only)"));
options.push_back(std::make_pair("2", "Detect W5500 (GPIO CS=5; SCK=18; MISO=19; MOSI=23; RST=33)"));
options.push_back(std::make_pair("3", "M5Stack Atom POE (W5500)"));
return options;
}