Question: When the code runs a buzzer turns on indefinitely. I want the buzzer to play for x seconds what lines of code do I need

 When the code runs a buzzer turns on indefinitely. I want

When the code runs a buzzer turns on indefinitely. I want the buzzer to play for x seconds what lines of code do I need to add?

import pigpio import time import sys pi = pigpio.pi() PinNumber=13 FrequencyHz=5 # first arg is pin number, # second arg is frequency in Hz, # third arg is number of ON units out of 1000000 print ("The Output Frequency is:", FrequencyHz, ) while True: pi.hardware_PWM(PinNumber, FrequencyHz, 500000)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!