我正在尝试使用LiquidCrystal库在两个LED屏幕上以及在串行监视器上进行Arduino输出(稍后将输出到txt文件或类似文件)。
在我的代码中,我注释掉了Serial。开始(9600),然后屏幕正确输出,但一旦我包括它,串行监视器输出良好,但屏幕翻转并输出乱码。我是个新手,我知道有一些基本的东西我不知道,比如9600应该增加,因为可能需要这么大的功率?
#include <LiquidCrystal.h>
#include <DHT.h>
#include <math.h>
/*
* Cannot do both screens and log in the console.
* Currently Serial 9600 is commented out, to allow to print on the screen
* Need Fixing
*/
#include "DHT.h"
#define DHTPIN 8 // what digital pin we're connected to
#define DHTTYPE DHT11 // DHT 11
// Connect a 10K resistor from pin 2 (data) to pin 1 (power) of the sensor
DHT dht(DHTPIN, DHTTYPE);
LiquidCrystal lcd(1, 2, 4, 5, 6, 7);
void setup() {
//Serial.begin(9600);
Serial.println("Temperature Recorder");
dht.begin();
// Now LiquidCrystal led monitor stuff
lcd.begin(16,2);
lcd.setCursor(2,0);
lcd.print("** Wanet **");
delay(1500);
lcd.setCursor(1,1);
lcd.print("Motherfuckers.");
delay(3000);
lcd.clear();
}
void loop() {
// Wait a few seconds between measurements.
delay(1000);
// Reading temperature or humidity takes about 250 milliseconds!
// Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
float h = dht.readHumidity();
// Read temperature as Celsius (the default)
float t = dht.readTemperature();
// Read temperature as Fahrenheit (isFahrenheit = true)
float f = dht.readTemperature(true);
// Check if any reads failed and exit early (to try again).
if (isnan(h) || isnan(t) || isnan(f)) {
Serial.println("Failed to read from DHT sensor!");
return;
}
// Compute heat index in Fahrenheit (the default)
float hif = dht.computeHeatIndex(f, h);
// Compute heat index in Celsius (isFahreheit = false)
float hic = dht.computeHeatIndex(t, h, false);
Serial.print("Humidity: ");
Serial.print(h);
Serial.print(" %\t");
Serial.print("Temperature: ");
Serial.print(t);
Serial.print(" *C ");
Serial.print(f);
Serial.print(" *F\t");
Serial.print(" | Heat index: ");
Serial.print(hic);
Serial.print(" *C ");
Serial.print(hif);
Serial.println(" *F");
Serial.println("------------------------------------");
// led screen printing
lcd.setCursor(0,0);
lcd.print("Temp: Humidity:");
lcd.setCursor(0,1);
lcd.print(t);
lcd.print(" ");
lcd.print(round(f));
lcd.print("%");
delay(5000);
lcd.clear();
lcd.setCursor(2,0);
lcd.print("The world");
lcd.setCursor(4,1);
lcd.print("OURS");
delay(6000);
}
干杯
lcd显示器使用其他Arduino引脚。D1与串行通信共享。
关于Arduino系列的文件
它通过数字引脚0(RX)和1(TX)进行通信,并通过USB与计算机进行通信。因此,如果使用这些功能,则不能同时将引脚0和1用于数字输入或输出。
您有两个选项,或者不使用这两个引脚
像这样的液晶lcd(2,3,4,5,6,7)
或者,如果您必须拥有这些pin,您可以考虑使用类似softwareSerial的库来模拟串行通信,这是您选择的一对pin。但是通过USB的串行监视器无论如何都无法工作。
我最近用我的Arduino(对我来说是一个相当新的爱好)完成了这个项目: http://www.instructables.com/id/Make-a-24X6-LED-matrix/?ALLSTEPS 我可以更改代码,使我想要的任何消息滚动访问矩阵,但我认为有实时信息,如股票报价,滚动访问,可能会很酷。我想我可以想出如何做到这一点,除非我想在有很多防火墙的工作中使用它,我怀疑Arduino软件是
我有一个程序可以打印到液晶显示器上,我想知道我是否可以同时将它打印到串行显示器上。 我试过连载。开始,但只是有错误。
我有一个Arduino Mega2560,它从传感器(格罗夫响度传感器)读取模拟值,并通过USB将其发送到树莓派3b。这些值在Arduino IDE的串行监视器中完美且毫不延迟地到达。但当我试图在处理过程中接收它们时,无论我发出多少噪声,我都会得到几乎为零的值,这里和那里都有随机的峰值。 我的第一个猜测是,我的处理代码将接收到的数据弄乱了,所以我更改了Arduino草图,以发送一个递增的整数,而不
我已经用java编写了一段代码来与我的Arduino板通信。它工作得很好。我还可以使用串行监视器与Arduino板通信。 但是,当我试图打开串行监视器时,java程序正在运行(监听连接到电子板的端口,端口32),它没有说, 串行端口“COM 32”已在使用中。尝试退出任何可能正在使用它的程序 这是完整的信息(为了完整起见) 是的,我知道,这是我的java程序,它正在使用端口。但这是否意味着我不能同
我正在尝试向arduino的串行监视器发送一些数据,并使led亮起,但我还无法获取它。我的代码中有什么问题请检查这里是arduino代码 下面是java代码
我正试图通过串行连接将处理过程中的一些数据发送到Arduino,以便Arduino可以控制LED条。在传输过程中,我可以查看串行监视器吗? 我不能使用任何语句(用于调试)。每次我尝试我都会 串行端口COM3已在使用中。尝试退出任何可能使用它的程序。 当我同时查看串行监视器时,是否有办法进行串行通信?