The code I use for DHT11
#include <DHT.h>
#include “math.h”
#define DHTPIN2
void Initialize_PlxDaq()
{
Serial.println(“CLEARDATA”); //clears up any data left from previous projects
Serial.println(“LABEL,Date,Time,Temperature,Humidity”); //always write LABEL, to indicate it as first line
}
void Write_PlxDaq()
{
Serial.print(“DATA”); //always write “DATA” to Inidicate the following as Data
Serial.print(","); //Move to next column using a “,”
Serial.print(“DATE”); //Store date on Excel
Serial.print(","); //Move to next column using a “,”
Serial.print(“TIME”); //Store date on Excel
Serial.print(","); //Move to next column using a “,”
Serial.print(DHT.temperature); //Store date on Excel
Serial.print(","); //Move to next column using a “,”
Serial.print(DHT.humidity); //Store date on Excel
Serial.print(","); //Move to next column using a “,”
Serial.println(); //End of Row move to next row
}
The error I run into … Hope any expert can help me
expected primary-expression before ‘.’ token