51 lines
1.1 KiB
C++
51 lines
1.1 KiB
C++
/*****************************************************************************
|
|
|
|
source::worx libPiGPio
|
|
Copyright © 2022 c.holzheuer
|
|
chris@sourceworx.org
|
|
|
|
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 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Uses:
|
|
|
|
pigpiod_if2 by joan2937, pigpio @ abyz.me.uk
|
|
https://abyz.me.uk/rpi/pigpio
|
|
|
|
sigslot by 2017 Pierre-Antoine Lacaze
|
|
https://github.com/palacaze/sigslot
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
#ifndef PIGBEEPER_H
|
|
#define PIGBEEPER_H
|
|
|
|
#include <pignodeout.h>
|
|
#include <pigstate.h>
|
|
|
|
/**
|
|
* @brief The pigBeeper class
|
|
* ein __passiver__ Beeper, muss per PWM angesteuert
|
|
* werden.
|
|
*/
|
|
|
|
|
|
class LIBPIGPIO_EXPORT pigBeeper : public pigNodeOut
|
|
{
|
|
public:
|
|
|
|
explicit pigBeeper( pigpio::bcm_t bcmNo );
|
|
virtual ~pigBeeper();
|
|
|
|
void play_tone( double freq, double duration );
|
|
void play_tune( std::vector<double> frv, std::vector<double> drv );
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PIGBEEPER_H
|