summary refs log tree commit diff stats
path: root/firmware/include/inputs/input.h
blob: 7899ce72fbfe37e1d9f019b43fe1f332181cde77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include "inputs/button.h"

namespace inputs {

class Input {
public:
    Input(/* pins */);

    void init();

    bool down_pressed();
    bool up_pressed();
    bool right_pressed();
    bool left_pressed();
    bool a_pressed();
    bool b_pressed();

private:
};

}