diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-12 18:46:23 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-05-12 18:46:23 +0200 |
commit | 51682e6475d477ced2427c131ff7e975b7cbe4b9 (patch) | |
tree | 12b711a504402305f6a6cbb0e2f0138e4836d6ac /minion/src/wifi_module.cpp | |
parent | 05cf212e79728c2bf1449ee5cfdf7dd6b1a8c4fd (diff) |
refactor(minion): rename the connect method in wifi module
Diffstat (limited to 'minion/src/wifi_module.cpp')
-rw-r--r-- | minion/src/wifi_module.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/minion/src/wifi_module.cpp b/minion/src/wifi_module.cpp index 065bcdf..8895722 100644 --- a/minion/src/wifi_module.cpp +++ b/minion/src/wifi_module.cpp @@ -34,7 +34,7 @@ void WiFiModule::reset() noexcept ); } -auto WiFiModule::connect(const char *ssid, const char *password) noexcept -> bool +auto WiFiModule::connect_to_wifi(const char *ssid, const char *password) noexcept -> bool { const char cmd[] = "AT+CWJAP"; |