Tất cả những vướng mắt của mình nằm ở đây:
Đây là code của mình:
/////////////////////////////////////////////////////////////////
int switchPin=5;
//Setup PinMode
void setup(){
pinMode(switchPin,INPUT_PULLUP);
Serial.begin(9600);//begin communication
}
void loop(){
Serial.println(digitalRead(switchPin));
delay(1000);
}
//////////////////////////////////////////////////////////////////////
Mình thử trên win thì nhận được mức logic 0 1 từ kit, nhưn khi qua Ubuntu dùng Cutcom thì ko được, mình đang vướng ở chỗ ttyACM0
Đây là code của mình:
/////////////////////////////////////////////////////////////////
int switchPin=5;
//Setup PinMode
void setup(){
pinMode(switchPin,INPUT_PULLUP);
Serial.begin(9600);//begin communication
}
void loop(){
Serial.println(digitalRead(switchPin));
delay(1000);
}
//////////////////////////////////////////////////////////////////////
Mình thử trên win thì nhận được mức logic 0 1 từ kit, nhưn khi qua Ubuntu dùng Cutcom thì ko được, mình đang vướng ở chỗ ttyACM0
Comment