전체 글 171

DHT11 Interfacing with Raspberry Pi

https://www.electronicwings.com/raspberry-pi/dht11-interfacing-with-raspberry-pi DHT11 Interfacing with Raspberry Pi | Raspberry Pi Interface a single wire DHT11 digital humidity and temperature sensor with Raspberry Pi. Then, print or display relative humidity in percentage and temperature in degree Celsius on a window. www.electronicwings.com DHT11 센서는 단일 와이어를 통해 직렬로 습도 및 온도 값을 측정하고 제공합니다. 상대 ..

라즈베리파이 2022.06.21

Configuring the UART communication on the Raspberry Pi

https://www.electronicwings.com/raspberry-pi/raspberry-pi-uart-communication-using-python-and-c Raspberry Pi UART Communication using Python and C | Raspberry Pi Raspberry Pi has In-built UART which can be used for serial communication with other devices like computer, GSM, GPS modules, etc. www.electronicwings.com 소개 UART(Universal Asynchronous Receiver/Transmitter)는 데이터가 비트 단위로 직렬로 전송되는 직렬 통신 ..

라즈베리파이 2022.06.21

OPCUA 통신 쉽게 알기 - 1편 OPC 란 무엇인가

https://red-nose-cousin.tistory.com/2?category=874877 OPCUA 통신 쉽게 알기 - 1편 OPC 란 무엇인가 OPCUA 서버와 클라이언트를 개발하고 나서 관련 강의를 들으러 다니다 보니 실제 현장의 요구 만큼의 교육을 받기가 힘들어서 블로그에 글을 남겨보려고 합니다. 이런 분들에게 도움이 되길 바 red-nose-cousin.tistory.com 1. OPC 란 무엇인가? OPC(OLE for Process Control) 의 약자입니다. 표준화된 통신 프로토콜입니다. OPC Foundation 에 의해서 관리되고 있습니다. 기존에 약자를 따르는 통신이 OPCDA 즉 OPC Classic 이라고 합니다. 그리고 OPCUA로 발전하면서 (Open Platform ..

OPC UA 2022.03.28

How to use Water Flow Sensor / Meter with Arduino

https://www.seeedstudio.com/blog/2020/05/11/how-to-use-water-flow-sensor-with-arduino/ How to use Water Flow Sensor / Meter with Arduino - Latest Open Tech From Seeed Well, in this blog we will tell you basically all the things you need to www.seeedstudio.com 이 포스트에서 우리는 기본적으로 다음을 포함하여 유량 센서에 대해 알아야 할 모든 것을 알려줄 것입니다. water flow sensor에 대한 간략한 설명입니다. hall water flow sensor의 작동 원리. water flow sens..

Sensor/유량센서 2022.03.26

Flash/Upload MicroPython Firmware to ESP32 and ESP8266

https://randomnerdtutorials.com/flash-upload-micropython-firmware-esp32-esp8266/ Flash/Upload MicroPython Firmware to ESP32 and ESP8266 | Random Nerd Tutorials This posts shows how to flash MicroPython firmware to ESP32/ESP8266 boards using the uPyCraft IDE software. It works on Windows, Linux, and Mac OS X. randomnerdtutorials.com 이 게시물은 uPyCraft IDE 소프트웨어를 사용하여 MicroPython 펌웨어를 ESP32/ESP8266 보..

카테고리 없음 2022.03.19

ESP32에서 인터럽트 사용하기

https://arsviator.blogspot.com/2018/11/esp32.html ESP32는 26개의 GPIO핀을 인터럽트 소스로 사용할 수 있다. * 아두이노 우노/메가에서는 인터럽트 소스로 사용할 수 있는 핀이 몇개 안된다. 위의 그림에서 빨간색 사각형 안에 들어있는 GPIO 핀들이 인터럽트 소스로 사용 가능한 핀이다. 인터럽트를 사용하려면 attachInterrupt() 함수로 인터럽트를 설정해 줘야 한다. attachInterrupt (digitalPinToInterrupt(GPIO), function, mode); 첫번째 파라미터는 인터럽트 소스로 사용할 GPIO 핀 번호인데 번호를 그냥 사용하지 말고 digitalPinToInterrupt(GPIO) 로 넣어줘야 한다. 예를 들어 GP..

ESP32 2022.03.18