Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
I like the way you have described everything. Straight to the point. No bullshit gyan.
nice explanation sir....plz make the videos of other sensors also....
How to add library
thats what i dont know either! can you tell me if you know how to do it please?
#include #define dataPin A0 dht DHT;void setup() { Serial.begin(9600); }//end "setup()"void loop(){ //Start of Program int readData=DHT.read11(dataPin); float t=DHT.temperature; float h=DHT.humidity; Serial.print("temperature = "); Serial.print(t); Serial.println("C "); Serial.print(" Humidity = "); Serial.print(h); Serial.print(" % "); delay(2000);//Wait 5 seconds before accessing sensor again. //Fastest should be once every two seconds.}// end loop()
Give the codes
#include #define dataPin 8 dht DHT;void setup() { Serial.begin(9600); }//end "setup()"void loop(){ //Start of Program int readData=DHT.read11(dataPin); float t=DHT.temperature; float h=DHT.humidity; Serial.print("temperature = "); Serial.print(t); Serial.println("C "); Serial.print(" Humidity = "); Serial.print(h); Serial.print(" % "); delay(2000);//Wait 5 seconds before accessing sensor again. //Fastest should be once every two seconds.}// end loop()
I like the way you have described everything. Straight to the point. No bullshit gyan.
nice explanation sir....plz make the videos of other sensors also....
How to add library
thats what i dont know either! can you tell me if you know how to do it please?
#include
#define dataPin A0
dht DHT;
void setup()
{
Serial.begin(9600);
}//end "setup()"
void loop(){
//Start of Program
int readData=DHT.read11(dataPin);
float t=DHT.temperature;
float h=DHT.humidity;
Serial.print("temperature = ");
Serial.print(t);
Serial.println("C ");
Serial.print(" Humidity = ");
Serial.print(h);
Serial.print(" % ");
delay(2000);//Wait 5 seconds before accessing sensor again.
//Fastest should be once every two seconds.
}// end loop()
Give the codes
#include
#define dataPin 8
dht DHT;
void setup()
{
Serial.begin(9600);
}//end "setup()"
void loop(){
//Start of Program
int readData=DHT.read11(dataPin);
float t=DHT.temperature;
float h=DHT.humidity;
Serial.print("temperature = ");
Serial.print(t);
Serial.println("C ");
Serial.print(" Humidity = ");
Serial.print(h);
Serial.print(" % ");
delay(2000);//Wait 5 seconds before accessing sensor again.
//Fastest should be once every two seconds.
}// end loop()