티스토리 뷰
728x90
출처
- ESP32: Connecting to a WiFi network - techtutorialsx
- [Arduino|아두이노] 온도 습도 센서 (KY-015, DHT11) 사용방법 : 젠트의 프로그래밍 세상
소스
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
#include <DHT.h>
const char *ssid = "iptime";
const char *password = "password";
IPAddress ip(192, 168, 0, 122); // 임시 IP 주소 설정
IPAddress gateway(192, 168, 0, 1);
IPAddress subnet(255, 255, 255, 0);
#define DHTPIN 4 // DHT 센서의 핀 번호
#define DHTTYPE DHT11 // DHT11 센서 사용
DHT dht(DHTPIN, DHTTYPE);
ESP8266WebServer server(80);
void setup() {
Serial.begin(921600);
delay(10);
dht.begin();
WiFi.config(ip, gateway, subnet); // 임시 IP 설정
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(1000);
Serial.print("IP address: ");
Serial.println(WiFi.localIP()); // WiFi의 로컬 IP 주소 출력
Serial.println("Connecting to WiFi...");
}
Serial.println("Connected to WiFi");
server.on("/", handleRoot);
server.begin();
}
void loop() {
server.handleClient();
}
void handleRoot() {
float temperature = dht.readTemperature(); // 온도 값을 읽음
String html = "<html><body>";
html += "<h1>web server</h1>";
html += "<p>now temp: " + String(temperature) + "C</p>";
html += "</body></html>";
server.send(200, "text/html", html); // 클라이언트에 응답 전송
}
댓글
300x250
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- android
- sas2009
- Xcode
- flex
- NDK
- 동경
- Mac
- Spring
- BPI-M4
- ffmpeg
- 튜닝쇼 2008
- SAS
- 전예희
- 서울오토살롱
- Spring MVC
- ble
- 송주경
- oracle
- Delphi
- JavaScript
- 지스타2007
- Delphi Tip
- 일본여행
- Linux
- MySQL
- ubuntu
- 레이싱모델 익스트림 포토 페스티벌
- KOBA
- Java
- koba2010
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함