-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcmd_help.ino
More file actions
20 lines (19 loc) · 739 Bytes
/
cmd_help.ino
File metadata and controls
20 lines (19 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* CONTROLL COMMANDS
help command
*/
void CMD_help(void) {
Serial.println(F("\n\nThis is HDMI switcher"));
Serial.print(F("\t version "));
Serial.println(__VERSION);
Serial.println();
Serial.println("SELECT - select output for modification");
Serial.println("SWITCH - swich to the selected input");
Serial.println("STATE - print the state of the device");
Serial.println();
Serial.println("ENABLE - enable the selected output");
Serial.println("DISABLE - disable the selected output");
Serial.println("NAME - (re)name the selected output");
Serial.println("LEARN - learn the IR command to the selected slot. Use with care");
Serial.println();
Serial.println("ejs <eugenijus.januskevicius@vgtu.lt>, 2018");
}