Skip to content

Commit

Permalink
v0.1.3 C3 support and some improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
hpsaturn committed Jul 17, 2022
1 parent b98c726 commit 3c5bb67
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ESP32 Wifi CLI",
"version": "0.1.2",
"version": "0.1.3",
"homepage":"https://github.com/hpsaturn/esp32-wifi-cli#readme",
"keywords":
[
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ESP32 Wifi CLI
version=0.1.2
version=0.1.3
author=hpsaturn <[email protected]>
maintainer=hpsaturn <[email protected]>
url=https://github.com/hpsaturn/esp32-wifi-cli.git
Expand Down
6 changes: 3 additions & 3 deletions src/ESP32WifiCLI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ void ESP32WifiCLI::printWifiStatus() {
Serial.println(WiFi.RSSI()); // Output signal strength.
Serial.print("MAC Address\t: ");
Serial.println(WiFi.macAddress()); // Output MAC address.
Serial.print("Hostname\t: ");
Serial.print("Hostname \t: ");
Serial.println(WiFi.getHostname()); // Output hostname.
Serial.println("");
}
Expand All @@ -18,9 +18,9 @@ void ESP32WifiCLI::printHelp() {
Serial.println("\nESP32WifiCLI Usage:\n");
Serial.println("setSSID \"YOUR SSID\"\tset the SSID into quotes");
Serial.println("setPASW \"YOUR PASW\"\tset the password into quotes");
Serial.println("connect \t\tsave and connect to the network");
Serial.println("connect \t\tsave and connect to the network");
Serial.println("list \t\t\tlist all saved networks");
Serial.println("select <number>\tselect the default AP (default: last saved)");
Serial.println("select <number> \tselect the default AP (default: last saved)");
Serial.println("mode <single/multi>\tconnection mode. Multi AP is a little slow");
Serial.println("scan \t\t\tscan for available networks");
Serial.println("status \t\t\tprint the current WiFi status");
Expand Down
4 changes: 2 additions & 2 deletions src/ESP32WifiCLI.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#define RW_MODE false
#define RO_MODE true

#define ESP32WIFICLI_VERSION "0.1.2"
#define ESP32WIFICLI_REVISION 035
#define ESP32WIFICLI_VERSION "0.1.3"
#define ESP32WIFICLI_REVISION 037

class ESP32WifiCLICallbacks;

Expand Down

0 comments on commit 3c5bb67

Please sign in to comment.