summary refs log tree commit diff stats
path: root/firmware/src/inputs/button.cpp
blob: ed02e329e3c62ceb085a406cb9e64157ba0f7044 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "inputs/button.h"

namespace inputs {

Button::Button(uint8_t pin)
    : pin { pin }
{
}

void Button::init() {}

bool Button::is_pressed()
{
    // TODO
    return false;
}

}