Buzzer buzzing continuously

My buzzer is continuously buzzing, how do I stop that except unplugging the Bolt Wifi Module ?
I did this project in python.

Hi @2020.shruti.dalvi,
This would have happened because you might have not written turn off the buzzer in the code. You can use the line analogWrite(pin, 0) or digitalWrite(pin, ‘LOW’) to turn off the buzzer. If you have used this line then you might have interrupted the execution by pressing Ctrl + C and the turn off line would not have been executed. So you can run the python file again and let the turn off line execute.

1 Like

Hi @2020.shruti.dalvi,
Is the issue completely resolved?

If your buzzer is continuously buzzing, You can stop that with API call.
Just open your web browser and call below api with correct api key and device id and mention digital pin to which buzzer if connected, assume that you have connected buzzer to pin 0:

https://cloud.boltiot.com/remote/<API_KEY>/digitalWrite?deviceName=<DEVICE_ID>&pin=0&state=LOW

Note: Change API_KEY and DEVICE_ID with you api key and bolt iot wifi module id.