반응형 라즈베리파이41 [RaspberryPi] sudo apt-get update error PROB)sudo apt-get updateHit:1 http://deb.debian.org/debian bullseye InReleaseGet:2 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB]Get:3 http://security.debian.org/debian-security bullseye-security InRelease [48.4 kB]Get:4 http://archive.raspberrypi.org/debian bullseye InRelease [23.6 kB]Reading package lists... DoneE: Release file for http://deb.debian.org/debian/dists/bullseye.. 2024. 5. 10. [RPI] How to use Inductive Proximity Sensor with Raspberry Pi 3 Model B import timeimport RPi.GPIO as GPIO# Pin of InputGPIOpin = -1# Initial the input pindef initialInductive(pin): global GPIOpin GPIOpin = pin GPIO.setmode(GPIO.BCM) GPIO.setup(GPIOpin,GPIO.IN, pull_up_down=GPIO.PUD_DOWN) print("Finished Initiation") print(GPIOpin)# Detect Metaldef detectMetal(): if(GPIOpin != -1): state = GPIO.input(GPIOpin) if state: print("Metal Detected") e.. 2024. 4. 29. Finding Raspberry Pi IP address using nmap 1. cmd > ipconfig 192.168.xx.?? =============================================================================== 2. nmap zenmap gui nmap -sn 192.168.xx.0/24 (Raspberry Pi Trading) =============================================================================== Output ==> 192.168.xx.xxx https://aka.ms/dotnet-core-applaunch?framework=Microsoft.WindowsDesktop.App&framework_version=7.0.0&arch=arm64&ri.. 2023. 8. 20. [Raspberry Pi]Raspberry Pi 4에 Windows 11을 설치하는 방법 https://kr.moyens.net/android/201893/ Raspberry Pi 4에 Windows 11을 설치하는 방법 - Moyens I/O Raspberry Pi 4에 Windows 11을 설치하시겠습니까? 이것은 시도해 볼 수 있는 재미있는 프로젝트일 뿐만 아니라 포켓 사이즈 PC가 필요한 경우 가능성의 세계를 열어줍니다. kr.moyens.net Raspberry Pi 4에 Windows 11을 설치하시겠습니까? 이것은 시도해 볼 수 있는 재미있는 프로젝트일 뿐만 아니라 포켓 사이즈 PC가 필요한 경우 가능성의 세계를 열어줍니다. 요약 Raspberry Pi에 Windows 11을 설치하기 위한 요구 사항 Raspberry Pi를 최신 펌웨어로 업데이트 라즈베리파이에 윈도우 11 설치.. 2023. 7. 21. 이전 1 2 3 4 ··· 11 다음 반응형