임베디드 보드 80

Raspberry Pico + Ethernet W5500

Arduino IDE 설정 참조 https://dokkodai.tistory.com/200?category=555883 업데이트 완료후 컴포트 설정됨 Include Ethernet 참조 https://dokkodai.tistory.com/199 참조 https://www.hackster.io/loveivyou/w5100s-evb-pico-with-the-arduino-ide-fe6315 소스코드 /* DHCP Chat Server A simple server that distributes any incoming messages to all connected clients. To use, telnet to your device's IP address and type. You can see the clien..

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..

Modebus TCP + rs485 + Relay

Relay Controller boardrate setting device id setting 24V voltage 보드레이트 설정 ZLAN5143D Modbus rs485 Network Gateway http://www.zlmcu.com/products_ZLAN5143D.htm 小体积串口服务器 导轨型串口服务器ZLAN5143D/Modbus网关,RS485转TCP MQTT JSON ModbusTCP ZLAN5143D是一款专门为工业环境设计的RS485设备数据采集器/物联网网关,兼具串口服务器、Modbus网关、MQTT网关、RS485转JSON等多种功能于一体。它具有一个RS485接口和一个以太网接口。它采用导轨型 www.zlmcu.com 테스트 릴레이 All OFF 릴레이 All ON Modbus TCP network con..

임베디드 보드 2022.02.26

#1-5 SR-201 릴레이 React-native 네트워크 제어

SR-201 https://www.berrybase.de/media/pdf/73/e0/e9/produkt_downloads-SR-201-Network-Relay-Quick-Start-GuidepoGfsJORs6QPP.pdf 공유기 안내전광판 아이피 설정 참조파일 e:\Downloads\sr-201-relay-0.1.0>python sr-201-relay.py 192.168.1.100 config ip=192.168.1.100 netmask=255.255.255.0 gateway=192.168.1.1 (unknown)= power_persist=0 version=2523 serial=F721C51C0C3A9D000000 dns=192.168.1.1 cloud_server=connect.tutuuu.com ..

임베디드 보드 2022.02.03

ESP32 + LED STRIP + SOUND SENSOR

ESP32 와이파이 / 블루투스 내장 A feature-rich MCU with integrated Wi-Fi and Bluetooth connectivity for a wide-range of applications ESP32-WROOM-32는 저전력 센서 네트워크에서 음성 인코딩, 음악 스트리밍 및 MP3 디코딩과 같은 가장 까다로운 작업에 이르기까지 다양한 애플리케이션을 대상으로 하는 강력한 일반 Wi-Fi BT BLE MCU 모듈입니다. https://www.espressif.com/en/products/socs/esp32 참조 https://makernambo.com/54 데이터 시트 https://www.espressif.com/sites/default/files/documentation/es..

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

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..

ESP32 + LED STRIP + 블루투스 제어

ESP32 ESP32-WROOM-32는 저전력 센서 네트워크에서 음성 인코딩, 음악 스트리밍 및 MP3 디코딩과 같은 가장 까다로운 작업에 이르기까지 다양한 애플리케이션을 대상으로 하는 강력한 일반 Wi-Fi BT BLE MCU 모듈입니다. 이 모듈의 핵심은 ESP32-D0WDQ6 칩*입니다. 임베디드 칩은 확장 가능하고 적응할 수 있도록 설계되었습니다. 개별적으로 제어할 수 있는 2개의 CPU 코어가 있으며 CPU 클럭 주파수는 80MHz에서 240MHz까지 조정 가능합니다. 또한 이 칩에는 주변 장치 모니터링과 같이 컴퓨팅 성능이 많이 필요하지 않은 작업을 수행하는 동안 전력을 절약하기 위해 CPU 대신 사용할 수 있는 저전력 보조 프로세서가 있습니다. ESP32는 정전식 터치 센서, 홀 센서, SD..