본문 바로가기

임베디드 보드/아두이노

(27)
MCP41HVX1 Digital Potentiometer for Arduino ( 디지털 가변저항 MCP41HVX1 을 아두이노를 통해 저항값을 조정하기 ) 전자회로를 구성할 때 필수적으로 필요한 저항, 그중에서도 가끔 고정된 값이 아닌 변화되는 값을 가진 저항이 필요로 하는데 그것을 가변저항( potentiometer ) 이라고 한다. 일반적인 가변저항은 이런 형태 또는 기판에 꼽을수 있도록 되어 있는 것으로 일정 수치의 저항값을 사용자가 원하는 값으로 변경할 수 있도록 할 수 있다. OPAMP 에서 주로 많이 사용한다. 이렇게 손으로 조정하는 것이 아닌 전자 신호를 이용한 저항값 조정을 할 수 있는 것을 디지털 가변저항( Digital Potentiometer ) 이라고 한다. 즉 하나의 MCU 를 이용하여 만들고자 하는 회로와 접목 시켜서 특정 입력값에 따라 또는 스위치에 따..
미니 LED 전광판 아두이노 제어 해당 제품은 제로윈마트 LED 쇼핑몰에서 판매되고 있는 제품입니다. 블루투스앱을 이용하여 스마트폰에서만 제어가 가능합니다. smartstore.naver.com/taklive/products/5044972007 [해외직구] 휘어지는 블루투스 LED 미니 전광판 : 제로윈마트 [제로윈마트] 제로윈텍 쇼핑몰 smartstore.naver.com 하지만 필요에 의해서 외부 다른 디바이스에서 텍스트를 입력받는 용도로 테스트합니다. 우리가 많이 사용하고 있는 아두이노를 이용하여 테스트합니다.
PWM splitter PWM 입력을 분할하여 8 출력합니다. PWM 3채널을 출력합니다. 테스트영상 Reference 엑셀데이터를 Array로 변경합니다. www.seabreezecomputers.com/excel2array/ Excel Spreadsheet to Array Converter Use this online converter tool to convert a spreadsheet or CSV file into a comma separated array or HTML Table. www.seabreezecomputers.com NF-9N24 설명서 conotec.co.kr/upload/pty3/1578530220_0.pdf
TFMINI + ARDUINO + ETHERNET SHIELD + LTE ROUTER TFMINI LIDAR (TOF) Laser Ranger Distance Sensor https://www.thanksbuyer.com/tf-mini-lidar-tof-laser-ranger-sensor-laser-distance-sensor-module-12m-for-uav-drones-robot-cars-61807 TF Mini LiDAR (ToF) Laser Ranger Sensor Laser Distance Sensor Module 12M for UAV Drones Robot Cars - Free Shipping - ThanksBuye TF Mini LiDAR (ToF) Laser Ranger Sensor Laser Distance Sensor Module 12M for UAV Drones Rob..
WEMOS D1 전류/전압 측정, ThingSpeak 데이터 모니터링 Data collection in the cloud with advanced data analysis using MATLAB https://thingspeak.com/ IoT Analytics - ThingSpeak Internet of Things Weather Station This project shows how to build an Arduino-based weather station that sends data to ThingSpeak. Once the data is collected, MATLAB is used to view trends of the data, plot histograms of the data, calculate dew point from the raw temperature t..
전압/전류 Data 전송 From Arduino to Node-RED 전류 / 전압 데이터를 Node-RED 서버로 전송합니다. Node-RED에서 데이터를 그래프 / 게이지 / 텍스트로 표시하여 사용자가 쉽게 확인 할 수 있도록 Dashboard를 구성합니다. Node-RED 아래 저장한 파일을 Node-RED에서 불러옵니다. 프로젝트 진행했던 node 전체를 불러올수 있습니다. 프로그래밍 / 설명 아두이노 + ESP8266 WIFI 프로그래밍 아두이노보드에서 10002 포트를 UDP SERVER 용도로 오픈합니다. 그리고 Node-RED 에서 요청이 오면 전류/전압 데이터로 응답합니다. #include #include Adafruit_INA219 ina219; #include LiquidCrystal_I2C lcd(0x27, 16, 2); // LCD I2C 주소를설정..
아두이노 전류량/ 전압 체크 https://github.com/adafruit/Adafruit_INA219 adafruit/Adafruit_INA219 INA219 Current Sensor. Contribute to adafruit/Adafruit_INA219 development by creating an account on GitHub. github.com Adafruit INA219 하이 사이드 DC 전류 센서 보드 용 라이브러리입니다. https://www.adafruit.com/product/904 INA219 High Side DC Current Sensor Breakout - 26V ±3.2A Max This breakout board will solve all your power-monitoring problems...
아두이노 배터리량 체크 아두이노를 이용하여 배터리 전압 측정으로 배터리 잔량을 체크합니다. 프로그래밍 보드의 전압을 체크하여 LCD 에 표시합니다. 위 표를 이용하여 전압에 따른 퍼센트를 표시합니다. float arduVolt = 4.86;// 아두이노 전압 멀티메터 실측치 float r_1K = 975.0;//1K옴 저항 실측치 float r_3K = 3265.0;//1K옴 저항 실측치 float r_4K = (r_1K + r_3K+ 100); // 4270.0;// 총 저항 #include #include LiquidCrystal_I2C lcd(0x27, 16, 2); // LCD I2C 주소를설정한다. 16칸2줄LCD 사용 // 0x27 대신 스캐닝 된 주소를 넣는다. void setup() { lcd.init(); lc..