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.
35 lines
615 B
35 lines
615 B
3 months ago
|
/*
|
||
|
* Copyright 2025 jacqueline <me@jacqueline.id.au>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
#include "indev/lv_indev.h"
|
||
|
|
||
|
#include "drivers/gpios.hpp"
|
||
|
#include "input/input_device.hpp"
|
||
|
#include "input/input_hook.hpp"
|
||
|
|
||
|
namespace input {
|
||
|
|
||
|
class HardReset : public IInputDevice {
|
||
|
public:
|
||
|
HardReset(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_;
|
||
|
|
||
|
int stage_;
|
||
|
};
|
||
|
|
||
|
} // namespace input
|