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.hpp | |
parent | 05cf212e79728c2bf1449ee5cfdf7dd6b1a8c4fd (diff) |
refactor(minion): rename the connect method in wifi module
Diffstat (limited to 'minion/src/wifi_module.hpp')
-rw-r--r-- | minion/src/wifi_module.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/minion/src/wifi_module.hpp b/minion/src/wifi_module.hpp index 62ea4f4..55abdfc 100644 --- a/minion/src/wifi_module.hpp +++ b/minion/src/wifi_module.hpp @@ -59,7 +59,7 @@ public: * * @returns Whether or not it succeeded. */ - auto connect(const char *ssid, const char *password) noexcept -> bool; + auto connect_to_wifi(const char *ssid, const char *password) noexcept -> bool; void set_wifi_mode(WifiMode wifi_mode) noexcept; |