From 8b7a48e0ce2253220545a5e4840caad52f576247 Mon Sep 17 00:00:00 2001 From: Gregg Date: Sun, 22 Nov 2020 20:44:09 -0600 Subject: [PATCH] Update HomeSpan.cpp Re-ordered CLI menu --- src/HomeSpan.cpp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/HomeSpan.cpp b/src/HomeSpan.cpp index ee87e52..6df3e59 100644 --- a/src/HomeSpan.cpp +++ b/src/HomeSpan.cpp @@ -672,24 +672,25 @@ void Span::processSerialCommand(char *c){ Serial.print("\n*** HomeSpan Commands ***\n\n"); Serial.print(" s - print connection status\n"); - Serial.print(" d - print attributes database\n"); - Serial.print(" i - print detailed info about configuration\n"); + Serial.print(" i - print summary information about the HAP Database\n"); + Serial.print(" d - print the full HAP Accessory Attributes Database in JSON format\n"); Serial.print("\n"); - Serial.print(" W - configure WiFi credentials and restart\n"); - Serial.print(" A - start Access Point\n"); - Serial.print(" X - delete WiFi credentials and restart\n"); + Serial.print(" W - configure WiFi Credentials and restart\n"); + Serial.print(" X - delete WiFi Credentials and restart\n"); + Serial.print(" S - change the HomeKit Pairing Setup Code to \n"); + Serial.print(" A - start the HomeSpan Setup Access Point\n"); Serial.print("\n"); Serial.print(" U - unpair device by deleting all Controller data\n"); - Serial.print(" H - delete HomeKit Device ID & Pairing data and restart\n"); + Serial.print(" H - delete HomeKit Device ID as well as all Controller data and restart\n"); Serial.print("\n"); Serial.print(" R - restart device\n"); Serial.print(" F - factory reset and restart\n"); Serial.print(" E - erase ALL stored data and restart\n"); Serial.print("\n"); + Serial.print(" L - change the Log Level setting to \n"); + Serial.print("\n"); Serial.print(" ? - print this list of commands\n"); Serial.print("\n"); - Serial.print(" L - change Log Level to \n"); - Serial.print(" S - change Setup Code to 8-digit \n"); Serial.print("\n*** End Commands ***\n\n"); } break;