Fork of Tangara with customizations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
tangara-fw/src/tangara/input/input_volume_buttons.hpp

37 lines
694 B

/*
* Copyright 2024 jacqueline <me@jacqueline.id.au>
*
* SPDX-License-Identifier: GPL-3.0-only
*/
#pragma once
#include <cstdint>
#include "gpios.hpp"
#include "hal/lv_hal_indev.h"
#include "haptics.hpp"
#include "input/input_device.hpp"
#include "input/input_hook.hpp"
#include "touchwheel.hpp"
namespace input {
class VolumeButtons : public IInputDevice {
public:
VolumeButtons(drivers::IGpios&);
auto read(lv_indev_data_t* data) -> void override;
auto name() -> std::string override;
auto triggers() -> std::vector<std::reference_wrapper<TriggerHooks>> override;
private:
drivers::IGpios& gpios_;
TriggerHooks up_;
TriggerHooks down_;
};
} // namespace input