Compare commits

..

No commits in common. "579d28e34b56736da57a5a7f888780b95c20224c" and "5a82d0d9889a7edf28808b3638a8b4925f6107cc" have entirely different histories.

1 changed files with 30 additions and 62 deletions

View File

@ -108,7 +108,6 @@ void runCommand(){
String mode;
uint8_t pin;
String state;
uint8_t pwmState;
switch ((char)command) {
case 'R': // run setup() again
Serial.print("R");
@ -196,6 +195,11 @@ void runCommand(){
Serial.print("s");
return;
case 'r': // read digital value
/*bug:
The following "r" (or any other text you may put there) will never get printed despite this code branch being executed. Dont ask me why or how.
Tested on Linux Mint 20.1, Arduino IDE version 2:1.0.5+dfsg2-4.1
Tested with Arduino Uno and Nano 328P
*/
Serial.print("r");
pin = waitForSerialInput(2).toInt();
if (pin >= NUM_DIGITAL_PINS) Serial.print("e");
@ -219,43 +223,6 @@ void runCommand(){
Serial.print("e");
}
return;
case 'p': // set a pwm pin
Serial.print("p");
pin = waitForSerialInput(2).toInt();
pwmState = waitForSerialInput(3).toInt();
if (digitalPinHasPWM(pin)) {
analogWrite(pin, pwmState);
Serial.print("s");
} else {
Serial.print("e");
}
return;
case 't': // toggle a pin
Serial.print("t");
if (toggleState(waitForSerialInput(2).toInt())==UNKNOWN_PIN) Serial.print("e");
else Serial.print("s");
return;
case 'l':
Serial.print("l");
state = waitForSerialInput(1);
if (state=="h") {
digitalWrite(LED_BUILTIN, HIGH);
Serial.print("s");
} else if (state=="l") {
digitalWrite(LED_BUILTIN, LOW);
Serial.print("s");
} else if (state=="t") {
toggleState(LED_BUILTIN);
Serial.print("s");
} else {
Serial.print("e");
}
return;
case 'q':
Serial.print("qs");
while (true) {
}
return;
default:
Serial.print("e");
}
@ -280,6 +247,7 @@ void setup(){
Serial.read();
}
Serial.print("s\r\n");
// testing
}
void loop(){