Send a single command.
(command)
| 48 | |
| 49 | |
| 50 | def send_command(command): |
| 51 | """Send a single command.""" |
| 52 | print("Send: >>> \n"+command) |
| 53 | TOFILE.write(command + EOL) |
| 54 | TOFILE.flush() |
| 55 | |
| 56 | def get_response(): |
| 57 | """Return the command response.""" |
no test coverage detected