hello! i am working on a project and i am met with the above error upon trying to send the code to my arduino board, is anyone able to help? This is my code:
#include<DHT.h>
#include <LiquidCrystal.h>
dht (A0, DHT11);
int Temp;
int humidity;
liquidcrystal_I2C lcd (0x3F, 16, 1);
void setup() {
dth.begin();
lcd.init();
lcd.backlight();
}
void loop () {
delay(1000);
Temp = dht.readTemperature
Humidity = dht.readHumidity
lcd.setCursor (0, 0);
//above 0 0 means first line and column for the text to show up on
lcd.print ("Temperature: ");
lcd.print (temp);
lcd.print (" C");
lcd.setCursor (0, 1);
// this means the same column but the line below the other one
These lines, and possibly others, are missing their terminating semicolon and if they are function calls they are also missing the required parentheses needed for a function call
I assume that you have fixed the problems with your code. If so, please post the working sketch in a new reply to this topic, using code tags when you post it