【发布时间】:2016-04-14 18:32:56
【问题描述】:
为 arduino 反应游戏制作的这段代码存在很多问题。我不确定我是否可能已经宣布 i 两次或其他什么。 Arduino 告诉我问题出在此处:“if (i == success_led)”。
// Public Domain 2012 by A.Coster
// some constants for readability, using booleans to save memory
boolean ON = 1 ;
boolean OFF = 0 ;
// Arduino pin setup - there are 3 pins used for LEDs,
// 1 for push-button. The pin at index success_led is
// the one the user should try to hit.
byte led_pins[3] = {8,9,10} ;
byte button_pin = 2 ;
byte success_led = 1 ; // refers to pin 9
// time_change is the number of milliseconds to add upon
// failure or subtract upon success.
// colorswitch_delay is the amount of time that the LED stays
// on. This value has time_change added to/subtracted from it.
// So that the user knows which LED was lit up when they hit
// the button, push_pause defines the number of milliseconds
// that the LED will stay on after the button is pressed.
unsigned int time_change = 50 ;
unsigned int colorswitch_delay = 500 ;
unsigned int push_pause = 2000 ;
void setup(){
for (int i=0 ; i ;) ;
pinMode( led_pins[i], OUTPUT ) ;
pinMode( button_pin, INPUT ) ;
}
void loop(){
// need to keep track of button presses
// so set the button state to 0 and overwrite
// later upon button press
boolean button_state = OFF ;
// sequentially turn on each LED
for ( int i=0 ; i digitalWrite( led_pins[i], HIGH ) ;
// Check for a button press every 5 milliseconds
for ( int t=0 ; t button_state = digitalRead( button_pin ) ;
// if the button has been pressed, stop
// switching LEDs so the user knows, and
// then check if it was the success_led
if ( button_state == ON ){
delay( push_pause ) ;
// set the button state back to off
button_state = OFF ;
if ( i == success_led )
// if the user hit the right LED,
// make it more challenging by
// reducing the delay between LED
// switches.
colorswitch_delay -= time_change ;
else
// if the user was wrong, make it
// easier by increasing the delay.
colorswitch_delay += time_change ;
break ;
}
delay( 5 ) ;
}
// and turn it off before looping through
// to turn the next LED on.
digitalWrite( led_pins[i], LOW ) ;
}
}
【问题讨论】:
-
由于
for令牌周围的语法错误,您的代码似乎已损坏并且无法编译。这段代码真的是你正在处理的吗? -
看起来你从互联网上盲目地复制/粘贴代码,包括版权标题......甚至没有尝试查看语法是否有效。在复制/粘贴之前三思。
-
一个基本的
for循环是for (int i = 0; i < XXX; i++) { your code here},其中XXX元素的数量
标签: c arduino scope declaration arduino-uno