Python

Decouvrez le language Python Table des Matieres:Partie I: Chapitre 1: Découvrez PythonChapitre 2: Installez PythonChapitre 3: Interpréteur Python et IDE de travailChapitre 4: Hello, World!Chapitre 5: Variables et typesChapitre 6:…

Continuer la lecturePython

Raspi_Buzzer

Programmer un Buzzer permettant d’émettre des Alarmes sonores https://vimeo.com/365383852/d9f90b4496 Code en Python #!/usr/bin/python import RPi.GPIO as GPIO import time  GPIO.setmode(GPIO.BCM) GPIO.setwarnings(False) buzzer = 23 GPIO.setup(buzzer, GPIO.OUT) try:         while True:…

Continuer la lectureRaspi_Buzzer