Arduino无法让我的布尔值工作

时间:2014-12-02 05:08:57

标签: c++ arduino

我不能让我的布尔值工作我不知道我做错了什么。任何人都可以看看代码,并给我一个暗示它有什么问题吗?我已经测试了不同的方法来编写它但没有成功。布尔值工作的唯一时间是我将代码放在void循环下。但我不能在那里使用它。

    #include <RemoteReceiver.h>
boolean statusLed1 = false; 
void setup() {
  Serial.begin(115200);

  // Initialize receiver on interrupt 0 (= digital pin 2), calls the callback "showCode"
  // after 3 identical codes have been received in a row. (thus, keep the button pressed
  // for a moment)
  //
  // See the interrupt-parameter of attachInterrupt for possible values (and pins)
  // to connect the receiver.
  RemoteReceiver::init(0, 3, showCode);
}

void loop() {
}

// Callback function is called only when a valid code is received.
void showCode(unsigned long receivedCode, unsigned int period) {
  // Note: interrupts are disabled. You can re-enable them if needed.

  // Print the received code.
  Serial.print("Code: ");
  Serial.print(receivedCode);
  Serial.print(", period duration: ");
  Serial.print(period);
  Serial.println("us.");

  if (receivedCode == 353805)
  {

    statusLed1 = true;
  }
  if (receivedCode == 352829)
  {
    statusLed1 = false;

  }
  if (statusLed1 = true) {
    Serial.print("on");
  } 
  if (statusLed1 = false){
    Serial.print("off");
  }
}

2 个答案:

答案 0 :(得分:2)

if (statusLed1 = true) {

书中最古老的问题。 =是赋值,==是相等比较。

此外,无论如何都不要与这样的布尔值进行比较。

if (statusLed1) {

答案 1 :(得分:0)

更改

 if (statusLed1 = true) {
    Serial.print("on");
  } 
  if (statusLed1 = false){
    Serial.print("off");
  }
}

 if (statusLed1 == true) {
    Serial.print("on");
  } 
  if (statusLed1 == false){
    Serial.print("off");
  }
}

 if (statusLed1) {
    Serial.print("on");
  } 
  if (!statusLed1){
    Serial.print("off");
  }
}