-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implemented tone and noTone; fixes #980 #6402
Conversation
@PilnyTomas - will you also implement the Queue mode to this PR, in order to allow |
Yeah, I can do that... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PTAL
Sorry to ask, may be I misunderstood something - I see channel must be done manually before calling Any reason not to set channel according pin number when calling Sorry if it is stupid question |
Hi, the channel can be ignored altogether- it is preset by default to 0, but you can, if you want, change it with the |
ok understood - thank you for the clarification ^_^ |
Hello I use UART2 with the pins (GPIO) 12 and 13 Torsten |
Please open a new issue, with more details and a sketch that demonstrate the issue. |
Is there any example on how to use this new Tone library? I can't make it work. |
@SrGalindo - https://www.arduino.cc/reference/en/language/functions/advanced-io/tone/ has a lot of examples linked at the end of the web page. This example is nice: https://www.arduino.cc/en/Tutorial/BuiltInExamples/toneMelody |
@SuGlider I've started with that example in my esp8266 without problem, although using it in my ESP32 it doesn't work, that's why I was looking for some example of this tone library for ESP32. If I'm not wrong I think is not as easy as tone(pin,frequenzy,duration). |
Yes, it is as simples as What exactly do you see as issue? |
Working Example: Connection: /*
This example code is in the public domain.
https://www.arduino.cc/en/Tutorial/BuiltInExamples/toneMelody
*/
#include "pitches.h"
#define TONE_PIN 4
// notes in the melody:
int melody[] = {
NOTE_C4, NOTE_G3, NOTE_G3, NOTE_A3, NOTE_G3, 0, NOTE_B3, NOTE_C4
};
// note durations: 4 = quarter note, 8 = eighth note, etc.:
int noteDurations[] = {
4, 8, 8, 4, 4, 4, 4, 4
};
void setup() {
// iterate over the notes of the melody:
for (int thisNote = 0; thisNote < 8; thisNote++) {
// to calculate the note duration, take one second divided by the note type.
//e.g. quarter note = 1000 / 4, eighth note = 1000/8, etc.
int noteDuration = 1000 / noteDurations[thisNote];
tone(TONE_PIN, melody[thisNote], noteDuration);
// to distinguish the notes, set a minimum time between them.
// the note's duration + 30% seems to work well:
int pauseBetweenNotes = noteDuration * 1.30;
delay(pauseBetweenNotes);
// stop the tone playing:
noTone(TONE_PIN);
}
}
void loop() {
// no need to repeat the melody.
} |
Issue #980 requested tone to be implemented.
tone in Arduino documentation
noTone in Arduino documentation
Summary
This PR provides new implementation of functions tone and noTone to be used with esp32.
Impact
New functions are written with almost the same API as Arduino original functions. This implementation adds the option to change duty (default is 50% the same as in Arduino).
Closes #980