임베디드 보드/아두이노 27

NANO + PIR SENSOR + RELAY + AIR CURTAINS

에어커튼을 인체감지시에만 동작하도록 프로그래밍 NANO 설정 https://m.blog.naver.com/hy10101010/221562445464 PIR SENSOR 센서 민감도를 조정 릴레이 구성 PIR SENSOR ARDUINO NANO RELAY MODULE 소스코드 int PIN_PIR = A7; int PIN_D12 = 12; int PIN_RELAY = 2; #define RELAY_TIMEOUT 100 // 20 sec void setup() { // put your setup code here, to run once: Serial.begin(9600); pinMode(PIN_PIR, INPUT); pinMode(PIN_D12, OUTPUT); pinMode(PIN_RELAY, OUTPUT..

아두이노 사운드 레벨 감지 센서

SOUND LEVEL SENSOR 보드의 가변저장으로 감도 조절 VCC : 3.3 V or 5V GND : DO : TTL OUTPUT 아두이노 아두이노를 이용하여 감지된 소음데이터를 아두이노 시리얼 플로터를 이용하여 그래프로 표시 테스트 저가형 사운드 레벨센서를 이용하여 아두이노로 간단하게 소음 감지 소스코드 void setup() { // put your setup code here, to run once: Serial.begin(9600); } #define MAX_LEN 100 int array[MAX_LEN]; // 1sec int timeout = 0; void loop() { // put your main code here, to run repeatedly: int value = analog..

W5500 Wiznet Ethernet Shield

wiznet w5500 shield 정보 http://m.wiznetshop.co.kr/product/w5500-ethernet-shield/735/category/56/display/1/ W5500 Ethernet Shield PLEASE SELECT THE DESTINATION COUNTRY AND LANGUAGE : SHIPPING TO : 가나(GHANA) SHIPPING TO : 가봉(GABON) SHIPPING TO : 가이아나(GUYANA) SHIPPING TO : 감비아(GAMBIA) SHIPPING TO : 과테말라(GUATEMALA) SHIPPING TO : 그레나다(GRENADA) SHIPPI wiznetshop.io DHCP 이더넷 연결 테스트 소스코드 /* DHCP-based IP..

Arduino NANO + ENC28J60 이더넷 쉴드

NANO + ENC28J60 ethernet shield 아두이노 나노 쉴드 형태로 쉽게 나노와 결합하여 이더넷만 꽂으면 웹서버 또는 웹클라이언트를 비롯한 IOT 디바이스로 간단히 사용가능합니다. enc28j60 MQTT 라이브러리 Use of an ENC28J60 shield (or module) with MQTT PubSub https://github.com/consolacion/ENC28J60-MQTT consolacion/ENC28J60-MQTT Use of an ENC28J60 shield (or module) with MQTT PubSub - consolacion/ENC28J60-MQTT github.com UIPEthernet 라이브러리 https://github.com/UIPEthernet..

ATMEGA2560 boot Writing

ATMEGA2560 Custom board https://ko.aliexpress.com/i/32886299494.html 1Set USBTiny USBtinyISP AVR ISP 프로그래머 부트 로더 Meag2560 UNO R3 With 10pin 프로그래밍 케이블|Integrated Ci 1Set USBTiny USBtinyISP AVR ISP 프로그래머 부트 로더 Meag2560 UNO R3 With 10pin 프로그래밍 케이블,중국을 포함한 전 세계의 판매자들에게서 구매하세요. 무료 배송, 한정 세일 타임, 간편한 반품과 구매자 ko.aliexpress.com 다운로드 프로그램 파일 선택 ATmega 2560 bootloader Image 다운로드 프로그램 프로그래머를 이용한 업로드 정상업로드가 ..

유량 패들 스위치 테스트

유량 패들 스위치 물순환, 물펌프 스위치 / 액체의 흐름을 감지합니다. 아두이노 아날로그 데이터 수신 https://www.alibaba.com/product-detail/MR-JX-01-Plastic-Paddle-Magnetic_60241079489.html?spm=a2756.order-detail-ta-ta-b.0.0.22b72fc2lY9yH2 Mr-jx-01 Plastic Paddle Magnetic Pules Output Water Flow Switch For Chlorine Generators In Swimming Pool - Buy Flow Switch,Water Mr-jx-01 Plastic Paddle Magnetic Pules Output Water Flow Switch For Chlor..

유량센서 YF-S201 테스트

YF-S201 Hall-Effect Water Flow Sensor 유량센서 (Hall-effect sensor) 아두이노를 이용하여 터널속 흘러가는 유량을 체크합니다. 테스트 #1 아두이노를 이용하여 펄스 파형을 시리얼 플로터로 표시합니다. 아날로그핀 A0으로 데이터를 수신합니다. void setup() { // put your setup code here, to run once: Serial.begin(9600); } void loop() { // put your main code here, to run repeatedly: int a = analogRead(A0); Serial.println(a); } 테스트화면 #2 유량대신 공기를 이용하여 테스트합니다. 디지털핀 2번으로 데이터를 수신합니다. /..

Arduino Nano rs485 + RELAY BOARD 제어

https://zerowincoding.tistory.com/entry/Receive-Temperature-Humidity-From-Farm1st-Temperature-Humidity-Board-by-RS485-RS232-communication Receive Temperature , Humidity From Farm1st Temperature, Humidity Board by RS485, RS232 communication Farm1st 온습도 보드에서 아두이노로 건구 온도, 습구 온도, 외기 온도, 습도를 전송합니다. 아두이노 RS232 과 RS 485 모듈을 통하여 데이터를 수신합니다. 시리얼모니터를 통하여 온도/습도 데이터 zerowincoding.tistory.com Arduino Nano Cu..