2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-06-04 19:29:01 +00:00
|
|
|
#ifndef __BUZZER_H__
|
|
|
|
#define __BUZZER_H__
|
2015-06-17 14:31:14 +00:00
|
|
|
|
2017-09-14 20:33:07 +00:00
|
|
|
#include "../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
// Make a buzzer and macro
|
|
|
|
#if ENABLED(LCD_USE_I2C_BUZZER)
|
|
|
|
// BUZZ() will be defined in ultralcd.h
|
|
|
|
#elif PIN_EXISTS(BEEPER)
|
2015-06-17 14:31:14 +00:00
|
|
|
|
2017-09-14 20:33:07 +00:00
|
|
|
#include "circularqueue.h"
|
2016-08-02 04:10:53 +00:00
|
|
|
|
2016-06-04 19:29:01 +00:00
|
|
|
#define TONE_QUEUE_LENGTH 4
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Tone structure
|
2016-07-27 10:40:44 +00:00
|
|
|
* @details Simple abstraction of a tone based on a duration and a frequency.
|
2016-06-04 19:29:01 +00:00
|
|
|
*/
|
|
|
|
struct tone_t {
|
|
|
|
uint16_t duration;
|
|
|
|
uint16_t frequency;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Buzzer class
|
|
|
|
*/
|
|
|
|
class Buzzer {
|
2017-09-14 20:33:07 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
typedef struct {
|
2016-06-04 19:29:01 +00:00
|
|
|
tone_t tone;
|
2016-07-11 02:36:46 +00:00
|
|
|
uint32_t endtime;
|
2017-09-14 20:33:07 +00:00
|
|
|
} state_t;
|
|
|
|
|
|
|
|
private:
|
|
|
|
static state_t state;
|
2016-06-04 19:29:01 +00:00
|
|
|
|
|
|
|
protected:
|
2017-09-14 20:33:07 +00:00
|
|
|
static CircularQueue<tone_t, TONE_QUEUE_LENGTH> buffer;
|
2016-06-04 19:29:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Inverts the sate of a digital PIN
|
|
|
|
* @details This will invert the current state of an digital IO pin.
|
|
|
|
*/
|
2017-09-14 20:33:07 +00:00
|
|
|
FORCE_INLINE static void invert() { TOGGLE(BEEPER_PIN); }
|
2016-06-04 19:29:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Turn off a digital PIN
|
|
|
|
* @details Alias of digitalWrite(PIN, LOW) using FastIO
|
|
|
|
*/
|
2017-09-14 20:33:07 +00:00
|
|
|
FORCE_INLINE static void off() { WRITE(BEEPER_PIN, LOW); }
|
2016-06-04 19:29:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Turn on a digital PIN
|
|
|
|
* @details Alias of digitalWrite(PIN, HIGH) using FastIO
|
|
|
|
*/
|
2017-09-14 20:33:07 +00:00
|
|
|
FORCE_INLINE static void on() { WRITE(BEEPER_PIN, HIGH); }
|
2016-06-04 19:29:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Resets the state of the class
|
|
|
|
* @details Brings the class state to a known one.
|
|
|
|
*/
|
2017-09-14 20:33:07 +00:00
|
|
|
inline static void reset() {
|
|
|
|
off();
|
|
|
|
state.endtime = 0;
|
2016-06-04 19:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @brief Class constructor
|
|
|
|
*/
|
|
|
|
Buzzer() {
|
|
|
|
SET_OUTPUT(BEEPER_PIN);
|
2017-09-14 20:33:07 +00:00
|
|
|
reset();
|
2016-06-04 19:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Add a tone to the queue
|
|
|
|
* @details Adds a tone_t structure to the ring buffer, will block IO if the
|
2016-07-11 02:36:46 +00:00
|
|
|
* queue is full waiting for one slot to get available.
|
2016-06-04 19:29:01 +00:00
|
|
|
*
|
|
|
|
* @param duration Duration of the tone in milliseconds
|
|
|
|
* @param frequency Frequency of the tone in hertz
|
|
|
|
*/
|
2017-09-14 20:33:07 +00:00
|
|
|
static void tone(const uint16_t duration, const uint16_t frequency=0);
|
2016-06-04 19:29:01 +00:00
|
|
|
|
|
|
|
/**
|
2017-09-14 20:33:07 +00:00
|
|
|
* @brief Tick function
|
2016-06-04 19:29:01 +00:00
|
|
|
* @details This function should be called at loop, it will take care of
|
2016-07-11 02:36:46 +00:00
|
|
|
* playing the tones in the queue.
|
2016-06-04 19:29:01 +00:00
|
|
|
*/
|
2017-09-14 20:33:07 +00:00
|
|
|
static void tick();
|
2016-06-04 19:29:01 +00:00
|
|
|
};
|
|
|
|
|
2017-09-14 20:33:07 +00:00
|
|
|
// Provide a buzzer instance
|
|
|
|
extern Buzzer buzzer;
|
|
|
|
#define BUZZ(d,f) buzzer.tone(d, f)
|
|
|
|
|
|
|
|
#else // No buzz capability
|
|
|
|
|
|
|
|
#define BUZZ(d,f) NOOP
|
|
|
|
|
|
|
|
#endif
|
2016-08-02 04:10:53 +00:00
|
|
|
|
2016-06-04 19:29:01 +00:00
|
|
|
#endif
|