PCB 보드 한글을 영문으로 옮김
GPIO 라이브러리 - WiringPi - Pigpio - Gpiozero - Rpi.GPIO |
GPIO 라이브러리 - WiringPi - Pigpio - Gpiozero - Rpi.GPIO |
웹서버 DB 설치 순서 1 Apache 2 MySQL 3 PHP 4 phpMyAdmin |
Web server, DB installation order 1 Apache 2 MySQL 3 PHP 4 phpMyAdmin |
CLI 기본 명령 sudo apt-get update: 패키지 목록 업데이트 sudo apt-get upgrade: 프로그램 업데이트 sudo 명령어: Super User cat /proc/version: OS버전 확인하기 cat /proc/cpuinfo: CPU버전 확인하기 df -a 혹은 df -h: SD 카드 용량 확인 startx: Linux GUI 실행 sudo raspi-config: 시스템 설정 ifconfig: 인터넷 설정 정보 |
CLI Basic Commands sudo apt-get update: Update package list sudo apt-get upgrade: Update program sudo Command: Super User cat /proc/version: Check OS version cat /proc/cpuinfo: Check CPU version df -a or df -h: Check SD card capacity startx: Run Linux GUI sudo raspi-config: System configuration ifconfig: Internet configuration information |
카메라 2대 출력 모듈 확인 libcamera-hello --list-cameras 영상 출력 libcamera-hello --camera 0 -t 0 libcamera-hello --camera 1 -t 0 |
Output 2 cameras Check modules libcamera-hello --list-cameras Output video libcamera-hello --camera 0 -t 0 libcamera-hello --camera 1 -t 0 |
IO Board 구조 커넥터 번호가 GPIO 번호 G: GND, 33: 3.3V UART: UART ADC0~ADC3: 아날로그 입력 I2C0~I2C3: I2C 인터페이스 J16, J26, j20: +5v 출력 j6, j13, j19: +12v 출력 |
IO Board Output Connector number is GPIO number G: GND, 33: 3.3V UART: UART ADC0~ADC3: Analog input I2C0~I2C3: I2C interface J16, J26, j20: +5v output j6, j13, j19: +12v output |
한글 폰트 설치 sudo apt-get install fonts-unfonts-core sudo apt-get install fonts-unfonts-extra sudo apt-get install ibus sudo apt-get install ibus-hangul |
|
Linux 기본 명령어 date 년월일시 출력 pwd 현재 작업 위치출력 cd 폴더 폴더로 이동 cd .. 상위 폴더로 이동 cd 루트폴더로이동 ls, ls -l 파일 목록 mkdir 폴더 폴더를 생성 echo "hello">file.txt -- 파일생성 cp FN1 FN2 파일 복사 mv FN2 FN4 파일 변경 rm file5 파일삭제 rm 폴더 폴더 삭제 rm -r 파일 폴더 삭제 clear 화면 clear |
Linux basic commands date: Print year/month/day/time pwd: Print current working location cd folder name: Move to folder cd ..: Move to upper folder cd: Move to root folder ls, ls -l: List of files mkdir: Create folder folder echo "hello">file.txt: Create file cp File1 file2: Copy file mv File3 File4: Change file rm file5: Delete file rm folder: Delete folder rm -r: Delete file folder clear: Clear screen |
40P GPIO BCM wPi wPi BCM |
40P GPIO BCM wPi wPi BCM |
브래드 보드 구조 이미지 | 브래드 보드 구조 이미지 |
전자 부품 기호 이미지 | 전자 부품 기호 이미지 |
필수 프로그램 1. Putty 2. Win32 Disk Imager 3. SD Memory Card Formatter |
Essential Utility Programs 1. Putty 2. Win32 Disk Imager 3. SD Memory Card Formatter |
GPIO 라이브러리
- WiringPi
- Pigpio
- Gpiozero
- Rpi.GPIO
GPIO library
- WiringPi
- Pigpio
- Gpiozero
- Rpi.GPIO
웹서버 DB 설치 순서
1 Apache
2 MySQL
3 PHP
4 phpMyAdmin
Web server, DB installation order
1 Apache
2 MySQL
3 PHP
4 phpMyAdmin
CLI 기본 명령
sudo apt-get update: 패키지 목록 업데이트
sudo apt-get upgrade: 프로그램 업데이트
sudo 명령어: Super User
cat /proc/version: OS버전 확인하기
cat /proc/cpuinfo: CPU버전 확인하기
df -a 혹은 df -h: SD 카드 용량 확인
startx: Linux GUI 실행
sudo raspi-config: 시스템 설정
ifconfig: 인터넷 설정 정보
CLI Basic Commands
sudo apt-get update: Update package list
sudo apt-get upgrade: Update program
sudo Command: Super User
cat /proc/version: Check OS version
cat /proc/cpuinfo: Check CPU version
df -a or df -h: Check SD card capacity
startx: Run Linux GUI
sudo raspi-config: System configuration
ifconfig: Internet configuration information
카메라 2대 출력
모듈 확인
libcamera-hello --list-cameras
영상 출력
libcamera-hello --camera 0 -t 0
libcamera-hello --camera 1 -t 0
Output 2 cameras
Check modules
libcamera-hello --list-cameras
Output video
libcamera-hello --camera 0 -t 0
libcamera-hello --camera 1 -t 0
IO Board 구조
커넥터 번호가 GPIO 번호
G: GND, 33: 3.3V
UART: UART
ADC0~ADC3: 아날로그 입력
I2C0~I2C3: I2C 인터페이스
J16, J26, j20: +5v 출력
j6, j13, j19: +12v 출력
IO Board Output
Connector number is GPIO number
G: GND, 33: 3.3V
UART: UART
ADC0~ADC3: Analog input
I2C0~I2C3: I2C interface
J16, J26, j20: +5v output
j6, j13, j19: +12v output
한글 폰트 설치
sudo apt-get install fonts-unfonts-core
sudo apt-get install fonts-unfonts-extra
sudo apt-get install ibus
sudo apt-get install ibus-hangul
Linux 기본 명령어
date 년월일시 출력
pwd 현재 작업 위치출력
cd 폴더 폴더로 이동
cd .. 상위 폴더로 이동
cd 루트폴더로이동
ls, ls -l 파일 목록
mkdir 폴더 폴더를 생성
echo "hello">file.txt
-- 파일생성
cp FN1 FN2 파일 복사
mv FN2 FN4 파일 변경
rm file5 파일삭제
rm 폴더 폴더 삭제
rm -r 파일 폴더 삭제
clear 화면 clear
Linux basic commands
date: Print year/month/day/time
pwd: Print current working location
cd folder name: Move to folder
cd ..: Move to upper folder
cd: Move to root folder
ls, ls -l: List of files
mkdir: Create folder folder
echo "hello">file.txt: Create file
cp File1 file2: Copy file
mv File3 File4: Change file
rm file5: Delete file
rm folder: Delete folder
rm -r: Delete file folder
clear: Clear screen
40P GPIO
BCM wPi wPi BCM
필수 프로그램
1. Putty
2. Win32 Disk Imager
3. SD Memory Card Formatter
Essential Utility Programs
1. Putty
2. Win32 Disk Imager
3. SD Memory Card Formatter
'라즈베리파이 5' 카테고리의 다른 글
라즈베리 파이 5 PCIe to M.2 Hat (0) | 2025.01.02 |
---|---|
라즈베리 파이 5 AI 키트, Hailo AI 가속 모듈 (0) | 2024.12.31 |
YOLOv8-Object-Detection-with-DeepSORT-Tracking (1) | 2024.12.20 |
Raspberry Pi 500 features (3) | 2024.12.16 |
라즈베리파이 5 카메라 설치 가이드 (2) | 2024.12.10 |
라즈베리파이5 개발자를 위한 여행 안내서 (2) | 2024.12.09 |
라즈베리파이 카메라 모듈 V3 기구 사이즈 (2) | 2024.12.07 |
라즈베리파이 태양광 TimeLabs 카메라 프로젝트 (2) | 2024.12.07 |
더욱 좋은 정보를 제공하겠습니다.~ ^^