我是Arduino的新手或一般的编码,我正在尝试一些事情。我正在使用基本菜单的代码,您可以通过按下按钮滚动。这工作正常但我希望它在第一个菜单上显示温度。
用于计算温度的代码位于循环()中,而用于自定义菜单的代码位于setup()
和loop()
之前。我想使用lcd.print(temperatureC)
将温度打印到LCD上,但不能使用temperatureC
,因为它只在loop()中声明。
有什么方法可以解决这个问题吗?我对此很陌生。
#include <LiquidCrystal.h>
LiquidCrystal lcd(8,9,10,11,12,13);
int tempPin = A0;
int photocellPin = A1;
const byte mySwitch = 7;
#define aref_voltage 3.3
// these "states" are what screen is currently being displayed.
typedef enum
{
POWER_ON, TEMPERATURE, LIGHTSENSOR, EXHAUST_FAN1, EXHAUST_FAN2,
// add more here ...
LAST_STATE // have this last
} states;
byte state = POWER_ON;
byte oldSwitch = HIGH;
void powerOn ()
{
Serial.println ("Welcome!");
lcd.setCursor(0,0);
lcd.print("Welcome!");
delay(2000);
}
void showTemperature ()
{
Serial.println ("Temperature");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Temperature");
lcd.setCursor(0,1);
lcd.print(temperatureC);
void setup()
{
Serial.begin(9600); //Start the serial connection with the computer
//to view the result open the serial monitor
analogReference(EXTERNAL);
pinMode (mySwitch, INPUT_PULLUP);
lcd.begin(16, 2);
lcd.clear();
powerOn ();
}
void loop()
{
int sensorVal = analogRead(tempPin);
delay(5);
int photocellVal = analogRead(photocellPin);
delay(5);
float voltage = (sensorVal) * aref_voltage;
voltage /= 1024.0;
float temperatureC = (voltage - .5) * 100;
temperatureC = round(temperatureC * 2.0) / 2.0;
{
byte switchValue = digitalRead (mySwitch);
// detect switch presses
if (switchValue != oldSwitch)
{
delay (100); // debounce
// was it pressed?
if (switchValue == LOW)
{
state++; // next state
if (state >= LAST_STATE)
state = TEMPERATURE;
switch (state)
{
case POWER_ON: powerOn (); break;
case TEMPERATURE: showTemperature (); break;
case LIGHTSENSOR: showLightsensor (); break;
case EXHAUST_FAN1: showExhaustFan1 (); break;
case EXHAUST_FAN2: showExhaustFan2 (); break;
} // end of switch
} // end of switch being pressed
oldSwitch = switchValue;
} // end of switch changing state
} // end of loop
答案 0 :(得分:0)
移动代码以将温度读取到一个方法中(与光读取代码分开 - 为此制作另一种方法)......
float getTemperature() {
int sensorVal = analogRead(tempPin);
delay(5);
float voltage = (sensorVal) * aref_voltage;
voltage /= 1024.0;
float temperatureC = (voltage - .5) * 100;
temperatureC = round(temperatureC * 2.0) / 2.0;
return temperatureC;
}
然后在showTemperature()方法中调用此方法。