Update HomeSpan.cpp

This commit is contained in:
Gregg 2023-04-03 17:15:51 -05:00
parent 2ba75c13ea
commit c287564aed
1 changed files with 5 additions and 2 deletions

View File

@ -1043,7 +1043,7 @@ void Span::processSerialCommand(const char *c){
} }
break; break;
case 'p': { case 'P': {
Serial.printf("\n*** Pairing Data used for Cloning another Device\n\n"); Serial.printf("\n*** Pairing Data used for Cloning another Device\n\n");
size_t olen; size_t olen;
@ -1060,7 +1060,7 @@ void Span::processSerialCommand(const char *c){
} }
break; break;
case 'P': { case 'C': {
Serial.printf("\n*** Clone Pairing Data from another Device\n\n"); Serial.printf("\n*** Clone Pairing Data from another Device\n\n");
TempBuffer<char> tBuf(200); TempBuffer<char> tBuf(200);
@ -1142,6 +1142,9 @@ void Span::processSerialCommand(const char *c){
Serial.print(" U - unpair device by deleting all Controller data\n"); Serial.print(" U - unpair device by deleting all Controller data\n");
Serial.print(" H - delete HomeKit Device ID as well as all Controller 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("\n");
Serial.print(" P - output Pairing Data that can be saved offline to clone a new device\n");
Serial.print(" C - clone Pairing Data previously saved offline from another device\n");
Serial.print("\n");
Serial.print(" R - restart device\n"); Serial.print(" R - restart device\n");
Serial.print(" F - factory reset and restart\n"); Serial.print(" F - factory reset and restart\n");
Serial.print(" E - erase ALL stored data and restart\n"); Serial.print(" E - erase ALL stored data and restart\n");