KRIVANJADIYables
Published © CC BY

Controlling a Buzzer

Controlling a Buzzer using Pico

BeginnerProtip6 minutes223
Controlling a Buzzer

Things used in this project

Story

Read more

Schematics

Controlling a Buzzer

Code

Controlling a Buzzer

MicroPython
from machine import Pin
import time

buzzer = Pin(15, Pin.OUT)

while True:
    buzzer.value(1)
    time.sleep(1)
    buzzer.value(0)
    time.sleep(1)

Credits

KRIVANJA
37 projects • 52 followers
www.krivanja.dev
Contact
DIYables
0 projects • 86 followers
I would like to invite you to join and add your projects to DIYables platform https://www.hackster.io/diyables
Contact

Comments

Please log in or sign up to comment.