Arduboy2 Library  6.0.0
BeepPin1 Class Reference

Play simple square wave tones using speaker pin 1. More...

#include <Arduboy2Beep.h>

Static Public Member Functions

static void begin ()
 Set up the hardware. More...
 
static void tone (uint16_t count)
 Play a tone continually, until replaced by a new tone or stopped. More...
 
static void tone (uint16_t count, uint8_t dur)
 Play a tone for a given duration. More...
 
static void timer ()
 Handle the duration that a tone plays for. More...
 
static void noTone ()
 Stop a tone that is playing. More...
 
static constexpr uint16_t freq (const float hz)
 Convert a frequency to the required count. More...
 

Static Public Attributes

static uint8_t duration = 0
 The counter used by the timer() function to time the duration of a tone. More...
 

Detailed Description

Play simple square wave tones using speaker pin 1.

Note
Class BeepPin2 provides identical functions for playing tones on speaker pin 2. Both classes can be used in the same sketch to allow playing two tones at the same time. To do this, the begin() and timer() functions of both classes must be used.

This class can be used to play square wave tones on speaker pin 1. The functions are designed to produce very small and efficient code.

A tone can be set to play for a given duration, or continuously until stopped or replaced by a new tone. No interrupts are used. A tone is generated by a hardware timer/counter directly toggling the pin, so once started, no CPU cycles are used to actually play the tone. The program continues to run while a tone is playing. However, a small amount of code is required to time and stop a tone after a given duration.

Tone frequencies can range from 15.26Hz to 1000000Hz.

Although there's no specific code to handle mute control, the Arduboy2Audio class will work since it has code to mute sound by setting the speaker pins to input mode and unmute by setting the pins as outputs. The BeepPin1 class doesn't interfere with this operation.

In order to avoid needing to use interrupts, the duration of tones is timed by calling the timer() function continuously at a fixed interval. The duration of a tone is given by specifying the number of times timer() will be called before stopping the tone.

For sketches that use Arduboy2::nextFrame(), or some other method to generate frames at a fixed rate, timer() can be called once per frame. Tone durations will then be given as the number of frames to play the tone for. For example, with a rate of 60 frames per second a duration of 30 would be used to play a tone for half a second.

The variable named #duration is the counter that times the duration of a tone. A sketch can determine if a tone is currently playing by testing if the #duration variable is non-zero (assuming it's a timed tone, not a continuous tone).

To keep the code small and efficient, the frequency of a tone is specified by the actual count value to be loaded into to timer/counter peripheral. The frequency will be determined by the count provided and the clock rate of the timer/counter. In order to allow a tone's frequency to be specified in hertz (cycles per second) the freq() helper function is provided, which converts a given frequency to the required count value.

NOTE that it is intended that freq() only be called with constant values. If freq() is called with a variable, code to perform floating point math will be included in the sketch, which will likely greatly increase the sketch's code size unless the sketch also uses floating point math for other purposes.

The formulas for frequency/count conversion are:

count=(1000000/frequency)-1
frequency=1000000/(count+1)

Counts must be between 0 and 65535.

All members of the class are static, so it's not necessary to create an instance of the class in order to use it. However, creating an instance doesn't produce any more code and it may make the source code smaller and make it easier to switch to the BeepPin2 class if it becomes necessary.

The following is a basic example sketch, which will generate a tone when a button is pressed.

#include <Arduboy2.h>
// There's no need to #include <Arduboy2Beep.h>
// It will be included in Arduboy2.h
Arduboy2 arduboy;
BeepPin1 beep; // class instance for speaker pin 1
void setup() {
arduboy.begin();
arduboy.setFrameRate(50);
beep.begin(); // set up the hardware for playing tones
}
void loop() {
if (!arduboy.nextFrame()) {
return;
}
beep.timer(); // handle tone duration
arduboy.pollButtons();
if (arduboy.justPressed(A_BUTTON)) {
// play a 1000Hz tone for 100 frames (2 seconds at 50 FPS)
// beep.freq(1000) is used to convert 1000Hz to the required count
beep.tone(beep.freq(1000), 100);
}
}
Note
These functions, and the equivalents in class BeepPin2, will not work with a DevKit Arduboy because the speaker pins used cannot be directly controlled by a timer/counter. "Dummy" functions are provided so a sketch will compile and work properly but no sound will be produced.
See also
BeepPin2

Definition at line 120 of file Arduboy2Beep.h.

Member Function Documentation

◆ begin()

void BeepPin1::begin ( )
static

Set up the hardware.

Prepare the hardware for playing tones. This function must be called (usually in setup()) before using any of the other functions in this class.

Definition at line 16 of file Arduboy2Beep.cpp.

◆ freq()

static constexpr uint16_t BeepPin1::freq ( const float  hz)
inlinestaticconstexpr

Convert a frequency to the required count.

Parameters
hzThe frequency, in hertz (cycles per second), to be converted to a count.
Returns
The required count to be loaded into the timer/counter for the given frequency.

This helper function will convert a desired tone frequency to the closest value required by the tone() function's count parameter. The calculated count is rounded up or down to the nearest integer, if necessary.

Example:

beep.tone(beep.freq(440)); // play a 440Hz tone until stopped or replaced
Note
It is intended that freq() only be called with constant values. If freq() is called with a variable, code to perform floating point math will be included in the sketch, which will likely greatly increase the sketch's code size unless the sketch also uses floating point math for other purposes.

Definition at line 250 of file Arduboy2Beep.h.

◆ noTone()

void BeepPin1::noTone ( )
static

Stop a tone that is playing.

If a tone is playing it will be stopped. It's safe to call this function even if a tone isn't currently playing.

See also
tone()

Definition at line 41 of file Arduboy2Beep.cpp.

◆ timer()

void BeepPin1::timer ( )
static

Handle the duration that a tone plays for.

This function must be called at a constant interval, which would normally be once per frame, in order to stop a tone after the desired tone duration has elapsed.

If the value of the duration variable is not 0, it will be decremented. When the duration variable is decremented to 0, a playing tone will be stopped.

Definition at line 34 of file Arduboy2Beep.cpp.

◆ tone() [1/2]

void BeepPin1::tone ( uint16_t  count)
static

Play a tone continually, until replaced by a new tone or stopped.

Parameters
countThe count to be loaded into the timer/counter to play the desired frequency.

A tone is played indefinitely, until replaced by another tone or stopped using noTone().

The tone's frequency is determined by the specified count, which is loaded into the timer/counter that generates the tone. A desired frequency can be converted into the required count value using the freq() function.

See also
freq() timer() noTone()

Definition at line 22 of file Arduboy2Beep.cpp.

◆ tone() [2/2]

void BeepPin1::tone ( uint16_t  count,
uint8_t  dur 
)
static

Play a tone for a given duration.

Parameters
countThe count to be loaded into the timer/counter to play the desired frequency.
durThe duration of the tone, used by timer().

A tone is played for the specified duration, or until replaced by another tone or stopped using noTone().

The tone's frequency is determined by the specified count, which is loaded into the timer/counter that generates the tone. A desired frequency can be converted into the required count value using the freq() function.

The duration value is the number of times the timer() function must be called before the tone is stopped.

See also
freq() timer() noTone()

Definition at line 27 of file Arduboy2Beep.cpp.

Member Data Documentation

◆ duration

uint8_t BeepPin1::duration = 0
static

The counter used by the timer() function to time the duration of a tone.

This variable is set by the dur parameter of the tone() function. It is then decremented each time the timer() function is called, if its value isn't 0. When timer() decrements it to 0, a tone that is playing will be stopped.

A sketch can determine if a tone is currently playing by testing if this variable is non-zero (assuming it's a timed tone, not a continuous tone).

Example:

beep.tone(beep.freq(1000), 15);
while (beep.duration != 0) { } // wait for the tone to stop playing

It can also be manipulated directly by the sketch, although this should seldom be necessary.

Definition at line 146 of file Arduboy2Beep.h.


The documentation for this class was generated from the following files:
BeepPin1
Play simple square wave tones using speaker pin 1.
Definition: Arduboy2Beep.h:121
Arduboy2Base::pollButtons
static void pollButtons()
Poll the buttons and track their state over time.
Definition: Arduboy2.cpp:1027
BeepPin1::begin
static void begin()
Set up the hardware.
Definition: Arduboy2Beep.cpp:16
Arduboy2
The main functions provided for writing sketches for the Arduboy, including text output.
Definition: Arduboy2.h:1576
Arduboy2Base::justPressed
static bool justPressed(uint8_t button)
Check if a button has just been pressed.
Definition: Arduboy2.cpp:1033
A_BUTTON
#define A_BUTTON
Definition: Arduboy2Core.h:71
BeepPin1::freq
static constexpr uint16_t freq(const float hz)
Convert a frequency to the required count.
Definition: Arduboy2Beep.h:250
BeepPin1::duration
static uint8_t duration
The counter used by the timer() function to time the duration of a tone.
Definition: Arduboy2Beep.h:146
BeepPin1::tone
static void tone(uint16_t count)
Play a tone continually, until replaced by a new tone or stopped.
Definition: Arduboy2Beep.cpp:22
Arduboy2Base::nextFrame
static bool nextFrame()
Indicate that it's time to render the next frame.
Definition: Arduboy2.cpp:237
Arduboy2::begin
void begin()
Initialize the hardware, display the boot logo, provide boot utilities, etc.
Definition: Arduboy2.cpp:1170
Arduboy2.h
The Arduboy2Base and Arduboy2 classes and support objects and definitions.
Arduboy2Base::setFrameRate
static void setFrameRate(uint8_t rate)
Set the frame rate used by the frame control functions.
Definition: Arduboy2.cpp:222
BeepPin1::timer
static void timer()
Handle the duration that a tone plays for.
Definition: Arduboy2Beep.cpp:34