Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorcelli committed May 31, 2024
1 parent 2e17c8c commit 15fc1d2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/clients.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,16 @@ void ssh_setup(String host) {
tft.setCursor(0, 0);
if(host != "") ssh_host = host;
else {
//ssh_host=keyboard("",15,"SSH HOST (IP)");
ssh_host=keyboard("192.168.3.60",15,"SSH HOST (IP)");
ssh_host=keyboard("",15,"SSH HOST (IP)");
//ssh_host=keyboard("192.168.3.60",15,"SSH HOST (IP)");
}
ssh_port=keyboard("22",5,"SSH PORT");

//ssh_user=keyboard("",76,"SSH USER");
ssh_user=keyboard("ubuntu",76,"SSH USER");
ssh_user=keyboard("",76,"SSH USER");
//ssh_user=keyboard("ubuntu",76,"SSH USER");

//ssh_password=keyboard("",76,"SSH PASSWORD");
ssh_password=keyboard("ubuntu",76,"SSH PASSWORD");
ssh_password=keyboard("",76,"SSH PASSWORD");
//ssh_password=keyboard("ubuntu",76,"SSH PASSWORD");

// Connect to SSH server
TaskHandle_t sshTaskHandle = NULL;
Expand Down

0 comments on commit 15fc1d2

Please sign in to comment.