-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcmd_get.cpp
60 lines (54 loc) · 1.24 KB
/
cmd_get.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include "arduino_cli.h"
/**
* Get input from a digital/analog pin
*/
void cmd_get(String *cmd, String *args) {
// Make sure cmd parameter isn't null
if(cmd == NULL) {
Serial.println("ERROR: 1st param of cmd_get must not NULL");
return;
}
// Show usage if there is no argument
if(args == NULL) {
help(cmd);
return;
}
// Prepare variables
String pinStr = "";
bool hasPinStr = false;
for(int i = 0; i < args->length(); i++) {
char each = args->charAt(i);
if(each == ' ') {
if(hasPinStr) {
Serial.println("Excessive arguments");
Serial.println("");
help(cmd);
return;
} else {
hasPinStr = true;
}
} else if(!hasPinStr) {
pinStr += each;
}
}
// Parse pin string
byte pin = parsePin(&pinStr);
if(pin == PIN_INVALID) {
// CONDITION: Invalid Pin ID
Serial.println("Pin ID \"" + pinStr + "\" is not valid");
Serial.println("");
help(cmd);
return;
}
// Set pin role
pinMode(pin, INPUT);
// Read and print the data
if(pinStr.charAt(0) == 'A') {
// CONDITION: Analog pin
Serial.println(analogRead(pin));
} else {
// CONDITION: Digital pin
Serial.println(digitalRead(pin));
}
Serial.println("");
}