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
En esta página del sitio puede ver el video en línea Let's program the Raspberry with Python de Duración hora minuto segunda en buena calidad , que subió el usuario INewtron 02 octubre 2018, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 39,106 veces y le gustó 828 a los espectadores. Disfruta viendo!