본문 바로가기

임베디드 보드/아두이노

(27)
디지털 차압 게이지 - 아두이노 측정 기체 또는 액체의 압력을 측정합니다. 차압게이지는 엑체 또는 가스의 흐름을 측정합니다. 프로그래밍 아날로그 입력을 받아 시리얼 모니터로 값을 출력합니다. 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..