Let's program the Raspberry with Python

Pubblicato il: 02 ottobre 2018
sul canale di: INewtron
39,106
828

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  


In questa pagina del sito puoi guardare il video online Let's program the Raspberry with Python della durata di ore minuti seconda in buona qualità , che l'utente ha caricato INewtron 02 ottobre 2018, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 39,106 volte e gli è piaciuto 828 spettatori. Buona visione!