Commit 63228a5b authored by KangMin An's avatar KangMin An
Browse files

Update : 아두이노 사용자 데이터 수집기 사용하지 않는 변수 삭제.

parent 32bf5cbb
......@@ -85,12 +85,6 @@ void loop() {
// 지역 코드
String locCode = "3743011";
// 사용자 장소의 위도(Latitude), 경도(Longitude)
float lati = 37.241706;
String str_lati = String(lati,6);
float lng = 131.864889;
String str_lng = String(lng,6);
// DHT11 모듈의 측정 event
sensors_event_t event;
......@@ -111,8 +105,6 @@ void loop() {
input += "type=" + type_;
input += "&id=" + ID;
input += "&locCode" + locCode;
input += "&lat=" + str_lati;
input += "&lng=" + str_lng;
input += "&temp=" + str_Temp;
input += "&humi=" + str_Humi;
input += "&lights=" + str_Lights;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment