作者yimean (温柔杀手)
看板ASM
标题[问题] arduion变数监看问题
时间Mon May 7 22:56:46 2018
各位版上的大大晚上好。
我正在练习一个LED自保持,直到Button 再次Taggle时才改变LED状态的程式
目前遇到的问题如下,如果按钮按的时间比较长,动作就会异常。
目前推估应该是Loop持续执行,导致变数一直被更新,所以动作异常。
所以想问一下有没有哪一个IDE可以查看变数变化?
我的环境及程式如下。
HW:Arduino UNO version 3
IDE: Arduino 1.8.5 for windwos
// constants won't change. They're used here to set pin numbers:
const int buttonPin = 2; // the number of the pushbutton pin
const int ledPin = 13; // the number of the LED pin
// variables will change:
int buttonState = 0; // variable for reading the pushbutton status
int LEDstatus = 0; //if LEDstaus = 0, LED off, LEDstatu = 1, LED on
void setup() {
// initialize the LED pin as an output:
pinMode(ledPin, OUTPUT);
// initialize the pushbutton pin as an input:
pinMode(buttonPin, INPUT);
}
void loop() {
// read the state of the pushbutton value:
buttonState = digitalRead(buttonPin);
// check if the pushbutton is pressed. If it is, the buttonState is HIGH:
if (buttonState == HIGH) {
// turn LED on:
LEDstatus = 1 - LEDstatus;
}
if (LEDstatus == 1){
digitalWrite(ledPin, HIGH);
}
else {
// turn LED off:
digitalWrite(ledPin, LOW);
}
}
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 123.195.98.141
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/ASM/M.1525705009.A.5E7.html
※ 编辑: yimean (123.195.98.141), 05/07/2018 23:00:59
1F:→ god145145: 你先跑DigitalReadSerial这个范例,开监控视窗看 05/07 23:12
2F:→ god145145: 然後再看Debounce这个范例 05/07 23:13
4F:→ johnpage: 5%9c%a8-arduino-uno-r3-%e8%aa%bf%e8%a9%a6debug%e8%8d 05/07 23:33
5F:→ johnpage: %89%e7%a8%bf%e7%a2%bc/ 05/07 23:33
6F:→ yimean: @god145145请问一下您说的监控视窗是指串连列阜的吗? 05/08 10:08
7F:→ yimean: 可是我的动作都是在本地完成,并没有跟电脑做沟通。 05/08 10:08
8F:→ darkster: 你想要监看就是连电脑,把变数进去显示啊 05/08 14:03
9F:→ darkster: 丢 05/08 14:04
10F:推 nissptt: 楼主习惯写在桌上电脑,笔电执行的程式吧!那才会容易监 05/08 14:22
11F:→ nissptt: 看。 05/08 14:22
12F:推 nissptt: Arduino是另一台独立的电脑,执行中的变数另一台电脑是无 05/08 14:26
13F:→ nissptt: 法监看的,除非你加写程式码主动列印或传输出来。 05/08 14:26
14F:推 nissptt: 不然,就要用模拟器了!但我没听过有Arduino和相关元件 05/08 14:31
15F:→ nissptt: 的模拟器耶! 05/08 14:31
16F:→ yimean: 原来如此,感谢各位大大的解惑。 05/08 20:54