스마트팜 14

Thingsboard 데이터 업로드 From 아두이노 Arduino

아두이노 메가로 스마트팜 필드 보드를 구성합니다. 보드에서 데이터를 업로드 하는 방법은 하나씩 올리는 방법과 여러 데이터를 묶어서 올리는 방식이 있습니다. 하나씩 올리는 방법 tb.sendTelemetryFloat("ntc1", temperature[0]); tb.sendTelemetryFloat("ntc2", temperature[1]); tb.sendTelemetryFloat("ntc3", temperature[2]); tb.sendTelemetryFloat("ntc4", temperature[3]); tb.sendTelemetryFloat("ntc5", temperature[4]); tb.sendTelemetryFloat("ntc6", temperature[5]); 배열로 올리는 방법 8개를 묶어서..

스마트팜 2020.06.13

우노빅보드 스마트팜 동작 테스트

스마트팜 구현에 필요한 센서 / 제어 / 데이터 통신 를 연결하여 기본 동작 테스트를 진행합니다. #include #include #define DEBUG true #define USE_NETWORK false #define RXPIN 3 #define TXPIN 2 SoftwareSerial esp8266Serial(RXPIN,TXPIN); // Pin 2 & 3 of Arduino as RX and TX. Connect TX and RX of ESP8266 respectively. //===================================================================== #include #include #define DHTPIN 4 #define DHTTYPE D..

ec, pH, loadsell 추가 적용 on 스마트팜

스마트팜 농가 센서 측정 추가합니다. 좀더 정확한 데이터를 산출 / 분석 지원하여 농가의 수확량을 늘리는 프로젝트 진행중입니다. 아날로그 전기전도도 센서 (analog electronics conductivity sensor) https://blog.naver.com/cherrychance/221648510889 아날로그 전자 전도도 센서 ​analog electronics conductivity sensorDFRobot DFR0300-H 중력 시리즈 아날로그 센서 / 미터D... blog.naver.com pH 미터 pH 미터(pH meter)는 수용액 내 수소 이온 활동도를 측정하는 과학 기구의 하나로서, 산성이나 알칼리성을 pH로 표현하여 나타낸다. https://blog.naver.com/cher..

스마트팜 2020.05.18