Hackster is hosting Hackster Holidays, Ep. 6: Livestream & Giveaway Drawing. Watch previous episodes or stream live on Monday!Stream Hackster Holidays, Ep. 6 on Monday!
KRIVANJADIYables
Published © CC BY

Controlling a Buzzer

Controlling a Buzzer using Pico

BeginnerProtip6 minutes218
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

KRIVANJA

37 projects • 52 followers
www.krivanja.dev
DIYables

DIYables

0 projects • 79 followers
I would like to invite you to join and add your projects to DIYables platform https://www.hackster.io/diyables

Comments