1

我和我的朋友正在 Arduino 板上对数字温度计进行接线/编码,我正在编写代码。我们的温度计工作得很好,基本温度数据进入我们用于输出的 4 位 7 段 LED 屏幕。我正在尝试编写代码以显示负(低于零)温度,并且无法获得正确的输出。它不是输出负号,而是输出 8。

这是循环()方法:

void loop(void) {
 int temp = getTemp();
 boolean neg = false;
 if (temp < 0) {
   // Since the temperature is negative, multiplying it by -2 and adding it
   // to itself gives us the absolute value of the number
   temp += (temp * (-2));
   // We set the neg boolean to true, indicating that we're dealing with a negative number
   neg = true;
 }
 displayNumber(temp, neg);
}

这是(截断的) displayNumber() 方法:

void displayNumber(int toDisplay, boolean negative) {

int num = toDisplay;

// The digits are 1-4, left to right
for(int digit = 4; digit > 0 ; digit--) {
//Turn on a digit for a short amount of time
switch(digit) {
case 1:
  // The leftmost digit only needs to be on for temps 100.0 or above, 
  // or to display the negative sign for temps -10.0 or below
  if (num >= 1000 || (num >= 100 && negative == true)) {
    digitalWrite(digit1, HIGH);
    }
  if (num >= 100 && negative == true) {
    lightNumber(11);
  }
  break;
case 2:
  // Only needs to be on for temps 10.0 degrees or above, or 
  // for single-digit subzero temps.
  if (num >= 100 || negative == true) {
    digitalWrite(digit2, HIGH);
  }
  if (num < 100 && negative == true) {
    lightNumber(11);
  }
  break;
case 3:
  digitalWrite(digit3, HIGH);
  break;
case 4:
  digitalWrite(digit4, HIGH);
  break;
}

//Turn on the right segments for this digit
lightNumber(toDisplay % 10);
toDisplay /= 10;

//Turn off all segments
lightNumber(10); 

//Turn off all digits
digitalWrite(digit1, LOW);
digitalWrite(digit2, LOW);
digitalWrite(digit3, LOW);
digitalWrite(digit4, LOW);    
}
}

...并且 lightNumber() 方法的代码为数字 0-9 正确打开或关闭段,其中 10 表示所有段关闭,11 仅表示中心段打开,用于负号。它使用带有整数参数的 switch 语句作为开关。问题是,当我向 displayNumber() 发送一个负值,而不是数字前面的负号时,我得到一个 8 显示在负号应该是的位置。任何想法为什么?

4

1 回答 1

1

我认为您在考虑if语句。在您的版本中,当数字为负时,两个if语句都会执行。尝试这个:

case 1:
  // The leftmost digit only needs to be on for temps 100.0 or above, 
  // or to display the negative sign for temps -10.0 or below
  if (num >= 1000 ){
    digitalWrite(digit1, HIGH);
    }
  if (num >= 100 && negative == true) {
    lightNumber(11);
  }
  break;
于 2012-06-25T12:56:05.313 回答