Originally posted by Gunghouk
View Post
Certainly you can fiddle with the audio frequency, but keep in mind that it uses Timer2 wich is also used by Arduino's analogWrite(), so it will break this function. Anyway it's not used anywhere in the sketch, so that isn't a problem for this project.
So here's some code. Add these lines to the setup() function
PHP Code:
/**
* URL: https://dbuezas.github.io/arduino-web-timers/#mcu=ATMEGA328P&timer=2&timerMode=CTC&topValue=OCR2A&OCR2A=126&CompareOutputModeA=toggle&clockPrescalerOrSource=128
* Mode : CTC
* Period : 1 ms
* Frequency: 1 kHz
* Outputs :
* - B3: 50.00%, toggle
*/
TCCR2A = 1 << COM2A0 | 1 << WGM21;
TCCR2B = 1 << CS22 |1 << CS20;
DDRB |= 1 << DDB3;
OCR2A = 127;
Delete or comment out this line:
PHP Code:
analogWrite(audioPin, 127); // Set audioPin with 50% duty cycle PWM
The value OCR2A sets the frequency. A value of 128 gets you 490 Hz. A value of 60 gets you 1Khz, and proportionally the other values in between.
So if you want the mainSample delay to modulate the tone you map the values like this:
Place this line in the loop().
PHP Code:
OCR2A = map(mainDelay, defMainDelay, 20, 60, 128);
Then you'll hear 1 KHz at minimum delay of 10us and gradually decreasing to 490 Hz at delay 20us. Set the limits as you will.
Comment