Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/arduino/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Button Arduino一键开/关控制_Button_Arduino - Fatal编程技术网

Button Arduino一键开/关控制

Button Arduino一键开/关控制,button,arduino,Button,Arduino,我正试图找到一种使用一个按钮来启用/禁用命令的方法。(实际上,它是一个多色LED,我正在尝试开始/停止改变颜色) 我的代码在这里,但它不工作,如果有人能告诉我出了什么问题,我看不到它 int red = 0; int redPin = 9; int blue = 0; int bluePin = 11; int green = 0; int greenPin = 10; int state = 0; int stateModulo = 0; void setup() { pinMode(10

我正试图找到一种使用一个按钮来启用/禁用命令的方法。(实际上,它是一个多色LED,我正在尝试开始/停止改变颜色)

我的代码在这里,但它不工作,如果有人能告诉我出了什么问题,我看不到它

int red = 0;
int redPin = 9;
int blue = 0;
int bluePin = 11;
int green = 0;
int greenPin = 10;
int state = 0;
int stateModulo = 0;
void setup() {
  pinMode(10, OUTPUT);
  pinMode(11, OUTPUT);
  pinMode(9, OUTPUT);
  pinMode(2, INPUT);
}


void checkButton(int var, int result) {
  if (digitalRead(2) == HIGH) {
      var++;
      result = var%2;
    }
}

void changecolor(int startColor,int endColor,int startPin,int endPin,int delayTime)
{
  for (endColor = 0; endColor <= 255; endColor++)
  {
     checkButton(state,stateModulo);
     if (stateModulo == 0) {
       startColor = 255 - endColor;
       analogWrite(endPin, endColor);
       analogWrite(startPin, startColor);
       delay(delayTime);
     }
  }
}

void loop() {
   changecolor(red,green,redPin,greenPin,10);
   changecolor(green,blue,greenPin,bluePin,10);
   changecolor(blue,red,bluePin,redPin,10);
 }
int-red=0;
int redPin=9;
int蓝色=0;
int-bluePin=11;
绿色整数=0;
int格林平=10;
int state=0;
int stateModulo=0;
无效设置(){
pinMode(10,输出);
pinMode(11,输出);
pinMode(9,输出);
pinMode(2,输入);
}
无效检查按钮(int变量、int结果){
如果(数字读取(2)=高){
var++;
结果=变量%2;
}
}
void changecolor(int startColor、int endColor、int startPin、int endPin、int delayTime)
{

对于(endColor=0;endColor,在下面的代码中,
result
不会通过引用传递,也不会返回。 同样的情况也适用于
var
,在您修改它之后,您会丢弃您所做的任何编辑

void checkButton(int var, int result) {
  if (digitalRead(2) == HIGH) {
      var++;
      result = var%2;
    }
}
我可以向你推荐一本好的C++书籍,在那里可以学习一些语言基础知识。 我的建议:C++中的思考,Bruce Eckel。

< P>考虑:

//Buttons

int button1 = 7;
int button2 = 6;
int button3 = 4;
int button4 = 2;


//Relays
int rl1 = 13;
int rl2 = 12;
int rl3 = 11;
int rl4 = 8;


//States for Relay and Button (1)

int state1 = HIGH;      // the current state of the output pin
int reading1;           // the current reading from the input pin
int previous1 = LOW;    // the previous reading from the input pin

//States for Relay and Button (2)

int state2 = HIGH;      // the current state of the output pin
int reading2;           // the current reading from the input pin
int previous2 = LOW;    // the previous reading from the input pin

//States for Relay and Button (3)

int state3 = HIGH;      // the current state of the output pin
int reading3;           // the current reading from the input pin
int previous3 = LOW;    // the previous reading from the input pin

//States for Relay and Button (4)

int state4 = HIGH;      // the current state of the output pin
int reading4;           // the current reading from the input pin
int previous4 = LOW;    // the previous reading from the input pin




// the follow variables are long's because the time, measured in miliseconds,
// will quickly become a bigger number than can be stored in an int.
long time1 = 0;          // the last time the output pin was toggled
long time2 = 0;
long time3 = 0;
long time4 = 0;

long debounce1 = 200;   // the debounce time, increase if the output flickers
long debounce2 = 200;
long debounce3 = 200;
long debounce4 = 200;


void setup()
{
  pinMode(button1, INPUT);
  pinMode(button2, INPUT);
  pinMode(button3, INPUT);
  pinMode(button4, INPUT);

  pinMode(rl1, OUTPUT);
  pinMode(rl2, OUTPUT);
  pinMode(rl3, OUTPUT);
  pinMode(rl4, OUTPUT);

}

void loop() {

  reading1 = digitalRead(button1);
  reading2 = digitalRead(button2);
  reading3 = digitalRead(button3);
  reading4 = digitalRead(button4);


  // if the input just went from LOW and HIGH and we've waited long enough
  // to ignore any noise on the circuit, toggle the output pin and remember
  // the time
  //Condition Relay 1
  if (reading1 == HIGH && previous1 == LOW && millis() - time1 > debounce1) {
    if (state1 == HIGH)
      state1 = LOW;
    else
      state1 = HIGH;

    time1 = millis();    
  }

  //Condition Relay 2
    if (reading2 == HIGH && previous2 == LOW && millis() - time2 > debounce2) {
    if (state2 == HIGH)
      state2 = LOW;
    else
      state2 = HIGH;

    time2 = millis();    
  }

  //Condition Relay 3
    if (reading3 == HIGH && previous3 == LOW && millis() - time3 > debounce3) {
    if (state3 == HIGH)
      state3 = LOW;
    else
      state3 = HIGH;

    time3 = millis();    
  }

  //Condition Relay 4
    if (reading4 == HIGH && previous4 == LOW && millis() - time4 > debounce4) {
    if (state4 == HIGH)
      state4 = LOW;
    else
      state4 = HIGH;

    time4 = millis();    
  }




  digitalWrite(rl1, state1);
  digitalWrite(rl2, state2);
  digitalWrite(rl3, state3);
  digitalWrite(rl4, state4);


  previous1 = reading1;
  previous2 = reading2;
  previous3 = reading3;
  previous4 = reading4;
}

您不会在任何地方更改
stateModulo