How to write a program using the Raspberry Pi in Python. A very simple example of using the GPIO expansion pins to blink an LED. Practical tips for installing the Raspbian operating system and programming the Raspberry Pi for use in our projects.
Raspbian: https://www.raspberrypi.org/downloads...
Rufus: https://rufus.akeo.ie/?locale
------------Source----------------------------
#LED test
import RPi.GPIO as GPIO
import Time
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
GPIO.setup(4, GPIO.OUT)
While True
GPIO.output(4, GPIO.HIGH)
Time.sleep(1)
GPIO.output(4, GPIO.LOW)
Time.sleep(1)
--------------------------------------------------------
Follow me also on:
FaceBook - / claudiomcgyver
Instagram - / inewtron
Nesta página do site você pode assistir ao vídeo on-line Let's program the Raspberry with Python duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário INewtron 02 Outubro 2018, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 39,106 vezes e gostou 828 espectadores. Boa visualização!