/* * SoundFactory.h * * Created on: December 28, 2019 * Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert */ #ifndef FLIPPR_DRIVER_SOUNDFACTORY_H #define FLIPPR_DRIVER_SOUNDFACTORY_H #include "Factory.h" #include "output/SoundBoardPinController.h" namespace flippR_driver { namespace output { class SoundFactory : Factory { public: explicit SoundFactory(nlohmann::json & object, std::shared_ptr pin_controller); std::map> getItemMap() override; private: uint8_t deactivation_time; }; } } #endif //FLIPPR_DRIVER_SOUNDFACTORY_H