我一直在为我的项目使用Arduino UNO微控制器。我想知道如何打开一个窗口来键入,例如,char“C”来执行我指定要执行的操作。例如以下代码。
#include <Servo.h>
Servo servothumb;
int command; int x =1;
// Define thumb servo
void setup() {
Serial.begin (115200);
servothumb.attach(2); // Set thumb servo to digital pin 2
}
void loop() {
if(Serial.available() > 0){
command = Serial.read();
if (command == 'c'){}
}
close();
delay(4000); }
void close() {
servothumb.write(0);
}
答案 0 :(得分:0)
您需要在com端口上打开串行终端程序。因此,在Windows中,您可以使用Putty.exe,并将其配置为在com1或Arduino所连接的任何com端口上运行。