Created
May 8, 2021 07:14
-
-
Save podstawek/ca688e30c0217572c86f1c5e3575bab5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int speakerPin = 26; // speaker on digital pin 26 | |
int coarseTune, fineTune, duty, coarseDuty, fineDuty; | |
void setup() { | |
pinMode (speakerPin, OUTPUT); | |
pinMode (A4, INPUT); // coarse potentiometer on analog pin A4 | |
pinMode (A5, INPUT); // fine potentiometer on analog pin A5 | |
pinMode (A6, INPUT); // duty cycle potentiometer on analog pin A6 | |
} | |
void loop() { | |
coarseTune = map(analogRead(A4), 0, 1023, 1, 100); // 10 | |
fineTune = map(analogRead(A5), 0, 1023, 1, 10000); | |
duty = map(analogRead(A6), 0, 1023, 1, 20); | |
coarseDuty = coarseTune / duty ; | |
fineDuty = fineTune / duty ; | |
digitalWrite(speakerPin, HIGH); | |
delay(coarseDuty); | |
delayMicroseconds(fineDuty); | |
digitalWrite(speakerPin, LOW); | |
delay(coarseTune-coarseDuty); | |
delayMicroseconds(fineTune-fineDuty); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment