ok1cdj / SX1281_QO100_TX

QO-100 SAT CW Transmitter with OLED Display using LoRa module
GNU General Public License v3.0
11 stars 6 forks source link

Wrong Buzzer initialisation ... #1

Open F5MDY opened 2 years ago

F5MDY commented 2 years ago

Good job !!

In the setup () wrong Buzzer Channel initialization

Original :

// Configure BUZZER functionalities. ledcSetup(3, 8000, 8); //PWM Channel, Freq, Resolution /// Attach BUZZER pin. ledcAttachPin(BUZZER, 3); // Pin, Channel

should become :

// Configure BUZZER functionalities. ledcSetup(9, 8000, 8); //PWM Channel, Freq, Resolution /// Attach BUZZER pin. ledcAttachPin(BUZZER, 9); // Pin, Channel