Raspberry Pi Zero W 카메라 서버
필요한 친구:
somehow
많은 실수 끝에 내가 찾은 솔루션은 수행하기가 매우 쉽습니다.
관련된 프로그래밍이 없습니다. 초보자도 충분히 쉽게 할 수 있습니다.
사용된 하드웨어
라즈베리 파이 OS
Raspberry Pi OS Lite(32비트)
Bullseye
를 SD card에 설치합니다.Raspberry Pi Imager(rpi-imager)를 사용합니다.
This will not work with 64-bit version of Raspberry Pi OS / Bullseye
쓰기 전에 고급 옵션 기어를 사용하여 다음을 설정합니다.
하드웨어
이미지가 굽는 동안 모든 것을 함께 연결하십시오.
Rpi Cam 웹 인터페이스
지침에 따라 설치Rpi Cam Web Interface
설치 옵션:
cam subfolder: ""
autostart: yes
Server: nginx
port: 80
Raspberry Pi Camera Module v2와 함께 사용하는 구성 옵션:
image_width 3280
image_height 2464
image_quality 90
width 1080
/etc/raspimjpeg
핫스팟
지침에 따라 설치Hotspot
핫스팟 구성은
firewalld
를 사용하므로 한 번 더 변경해야 했습니다.웹캠 서비스에 접속하기 위해서는 80번 포트를 열어야 했습니다.
pi@localhost:~ $ sudo firewall-cmd --zone=public --list-services
dhcpv6-client ssh
pi@localhost:~ $ sudo firewall-cmd --zone=public --add-service=http --permanent
success
pi@localhost:~ $ sudo firewall-cmd --zone=public --list-services
dhcpv6-client http ssh
Add http (port 80) permanently to the firewall list of services to allow
큰 화면으로 출력
프레임 버퍼 인터페이스를 설치했습니다
fbi
.그런 다음 이 프로그램을 사용하여 최신 스냅샷을 캡처하고 연결된 디스플레이에 푸시했습니다.
#!/bin/bash
export FRAMEBUFFER=/dev/fb0
export DISPLAY=:0
#Loop as long as the directory exists
while [ -d /var/www/media ]
do
#list the files in the directory sort by timestamp and grab the newest 1
JPG=$(ls -atr /var/www/media/*.jpg | tail -n1)
#Push the newest image to the framebuffer with autozoom
sudo fbi -a --noverbose -T 1 $JPG &
#Let that image show for 60 seconds
sleep 60
#Kill the framebuffer program and run another loop
sudo killall -9 fbi
done
Start the script by calling it from ~/.bashrc and using raspi-config to autologin with the 'pi' user
테스트 완료
fbi
를 통해 표시하도록 푸시된 사진요약
이 프로젝트는 특정 목적을 위해 컨퍼런스 부스의 일부로 제작되었습니다.
사용 가능한 인터넷이나 WI-FI가 없을 것이라고 들었지만 원격으로 제어할 수 있기를 원했습니다.
이를 통해 설치하기 쉬운 몇 가지 Raspberry Pi용 응용 프로그램을 알게 되었습니다.
이 동일한 하드웨어와 "포토부스"대물렌즈로 훨씬 더 많은 일을 할 수 있지만, 이것은 시작하기 쉽고 하기 쉽습니다.
이 프로젝트를 완료한 직후 Rpi Cam Web Interface을 사용했습니다.
Zero 2 W
및 Zero View
장치를 내 사무실 창에 배치했습니다.모션 지원 이미지 캡처 기능을 사용하여 뒷마당에 있는 우리 강아지와 동물의 사진을 찍고 있습니다.
Reference
이 문제에 관하여(Raspberry Pi Zero W 카메라 서버), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/dashaun/raspberry-pi-zero-w-camera-server-3ni9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)