Hi,
I am using a HC-06 bluetooth module, a neopixel ring and a buzzer in a project.
Here is my problem:
I am having a noise from the buzzer when the hc 06 is connected and it gets louder when my neopixel ring turns on.
Does anyone know what i am doing wrong?
Sorry, i dont know what to say but here is the simple sketch that i used just to test the buzzer.
Its sounds good but when i connect the bluetooth HC06(which i dont have the sketch yet, i just connect it) and the buzzer starts the make an extra weird sound.
int buzzer=5;
void setup() {
pinMode(buzzer,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
tone(buzzer,550);
}