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

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

디지털 차압 게이지 - 아두이노 측정

기체 또는 액체의 압력을 측정합니다. 차압게이지는 엑체 또는 가스의 흐름을 측정합니다. 프로그래밍 아날로그 입력을 받아 시리얼 모니터로 값을 출력합니다. void setup() { // put your setup code here, to run once: Serial.begin(9600); } // 0.0 - 775 // 1.6 - 830 #define LOW_LIMIT 775 #define HIGH_LIMIT (830) #define POINT_RANGE 1.6 int DataArray[10] = { 0, }; int loopCount = 0; float point = 0.0; void loop() { // put your main code here, to run repeatedly: int value..

TF-Luna ToF Ranging LiDAR -8m 거리 측정

1cm의 해상도로 측정 범위가 최대 8m 인 ToF (Time of Flight) 거리 센서 기반의 싱글 포인트 LIDAR. 고유 한 광학 구조 덕분에 안정적이고 정확하며 매우 민감한 측정을 수행 할 수 있습니다. 최대 거리 8m에서의 측정 오류는 2.5cm에 불과합니다. 이 센서는 크기가 작고 무게가 작습니다. 소형 차량의 장애물 감지 센서 또는 비행 물체의지면 충격으로부터 보호하기에 적합합니다. 데이터시트 https://github.com/May-DFRobot/DFRobot/blob/master/TF-Luna%20LiDAR%EF%BC%888m%EF%BC%89%20Datasheet.pdf May-DFRobot/DFRobot www.dfrobot.com. Contribute to May-DFRobot/D..

아두이노 메가 + WIFI모듈 ESP8266 + 팬모터 송풍기 제어

아두이노 메가 https://store.arduino.cc/usa/mega-2560-r3 Arduino Mega 2560 Rev3 | Arduino Official Store The Arduino Mega 2560 is a microcontroller board based on the ATmega2560. It has 54 digital input/output pins (of which 15 can be used as PWM outputs), 16 analog inputs, 4 UARTs (hardware serial ports), a 16 MHz crystal oscillator, a USB connection, a powe store.arduino.cc Arduino Mega 2560은 ATmega2..