Inhoudsopgave:
2025 Auteur: John Day | [email protected]. Laatst gewijzigd: 2025-01-13 06:57
Vereiste:
- Raspberry Pi
- Breadboard of T-schoenmaker
- Doorverbindingsdraden
- LED
Klik hier voor meer informatie
Stap 1: Verbind uw Raspberry Pi GPIO met LED op breadboard of multifunctioneel bord
Nu per video kun je pin 27 als uitgang gebruiken en GND verbinden met de GND-terminal van led, Zorg ervoor dat uw GPIO-verbinding correct is.
Stap 2: Instellen
Sluit LED op breadbard of T-schoenmaker aan als bijgevoegde video.
Stap 3: GPIO-bibliotheken installeren
$ sudo apt-get update
$ sudo apt-get install python-rpi.gpio python3-rpi.gpio
Stap 4: Programma
importeer RPi. GPIO als GPIO
import tijd
LedPin = 11 # pin11
def setup():
GPIO.setmode(GPIO. BOARD) # Nummers GPIO's op fysieke locatie
GPIO.setup (LedPin, GPIO. OUT) # Set LedPin's modus wordt uitgevoerd
GPIO.output (LedPin, GPIO. HIGH) # Stel LedPin hoog in (+3.3V) om led in te schakelen
def blink():
terwijl waar:
GPIO.output (LedPin, GPIO. HIGH) # led aan
slapen(1)
GPIO.output (LedPin, GPIO. LOW) # led uit time.sleep(1)
def vernietigen():
GPIO.output (LedPin, GPIO. LOW) # led uit
GPIO.cleanup() # Bron vrijgeven
if _name_ == '_main_':
opstelling()
proberen:
knipperen()
behalve KeyboardInterrupt:
kapot maken()