About Us About Embedded Introduce Editorial Contributions Location Document Android Application Embedded Linux Processor Arduino AVR Devices Resource Android Application Embedded Linux Processor Arduino AVR Devices Education 교육과정안내 교재 프로젝트 자료실 Reference Community 공지사항 제품광고 구인광고
아두이노 온습도센서(DHT-11)사용 작성자 임베디드코리아 작성일25-11-11 11:06 조회72회 댓글0건 첨부파일 adidax-dht11-a820a35.zip (2.4K) 10회 다운로드 DATE : 2025-11-11 11:17:42 다음글 목록 ---< 아두이노 온습도센서(DHT-11)사용 >--- #include <dht11.h> #define DHT11PIN 4 dht11 DHT11; void setup() { Serial.begin(9600); } void loop() { Serial.println(); int chk = DHT11.read(DHT11PIN); Serial.print("Humidity (%): "); Serial.println((float)DHT11.humidity, 2); Serial.print("Temperature (C): "); Serial.println((float)DHT11.temperature, 2); delay(2000); } 다음글 목록