added dir outputitems and moved items into

This commit is contained in:
Johannes Wendel
2018-11-20 22:52:45 +01:00
parent 2842ac20bb
commit 5a2242a850
17 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
/*
* Sound.h
*
* Created on: Aug 2, 2018
* Author: rhetenor
*/
#ifndef _SRC_OUTPUT_SOUND_H_
#define _SRC_OUTPUT_SOUND_H_
#include "ISound.h"
#include <memory>
#include <string>
#include "utility/IOutputGPIOInterface.h"
namespace flippR_driver
{
namespace output
{
class Sound : public ISound, OutputItem
{
public:
Sound(std::shared_ptr<utility::IOutputGPIOInterface> output_gpio_interface, int i2c_address, int data_pin, std::string name);
virtual ~Sound() = default;
virtual void play();
private:
};
} /* namespace output */
}
#endif