본문 바로가기

상공회의소

(3)
[미니프로젝트] Aduino Security Camera #Project Team 조은수 윤도현 #초기 구상 초음파센서, 노트북 내장 카메라, nfc 모듈을 사용하여 웹페이지에서 방범 모드 ON를 눌렀을때 거리 변화시 영상을 캡쳐하여 휴대폰으로 알림메시지 전송. nfc 모듈을 사용하여 자동으로 방범 모드를 켰다가 껐다가 할 수 있고 출입기록 가능. #와이어프레임 #실제 구상 초음파 센서, 아두이노 카메라 모듈 ESP32, 부저 모듈 -웹페이지의 버튼을 이용하여 보안모드를 켰다가 끌수 있다. -초음파센서로 거리측정. -보완모드가 켜져있을때 일정거리내 접근시 부저 모듈에서 경보음. https://github.com/Lobo2u/securitycam.git #실행 화면 처음엔 보안모드 ON상태라 문이 열리자마자 경보음이 울림 두번째 문을 다시 열었을때는 보안모드가 ..
초음파 센서 그리고 아두이노와 웹 연동하기 #hc-sr04_distance_meter2 유효거리 밖에서 ERROR표시 유효거리 내에서는 0.000 dist!=0일때 거리 측정, dist = 0일때 ERROR 표시 #include #include /*set the LCD address to 0x27 for a 16 chars and 2 line display */ LiquidCrystal_PCF8574 lcd(0x27); const int pinSW = 2; const int pinTrig = 4; const int pinEcho = 5; const int bounce_time = 160; void setup(){ pinMode(pinSW,INPUT_PULLUP); pinMode(pinTrig,OUTPUT); pinMode(pinEcho,INPUT..
C lang. 개발 환경 세팅 # virtual box 설치 https://www.virtualbox.org/ Oracle VM VirtualBox Welcome to VirtualBox.org! News Flash Important May 17th, 2021We're hiring! Looking for a new challenge? We're hiring a VirtualBox senior developer in 3D area (Europe/Russia/India). New November 22nd, 2021VirtualBox 6.1.30 released! Oracle today released a www.virtualbox.org 현재 버전인 6.1 설치하고 컴퓨터 운영체제에 맞는 버전을 다운로드 해줍니다. virtual box는..