Files

41 lines
967 B
C
Raw Permalink Normal View History

//
// button.h
//
2021-01-17 19:55:10 +00:00
// mt32-pi - A baremetal MIDI synthesizer for Raspberry Pi
2023-02-02 13:32:48 +00:00
// Copyright (C) 2020-2023 Dale Whinham <daleyo@gmail.com>
//
2021-01-17 19:55:10 +00:00
// This file is part of mt32-pi.
//
2021-01-17 19:55:10 +00:00
// mt32-pi is free software: you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the Free Software
// Foundation, either version 3 of the License, or (at your option) any later
// version.
//
2021-01-17 19:55:10 +00:00
// mt32-pi is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
//
// You should have received a copy of the GNU General Public License along with
// mt32-pi. If not, see <http://www.gnu.org/licenses/>.
//
#ifndef _button_h
#define _button_h
#include <circle/types.h>
enum TButton : u8
{
Button1,
Button2,
Button3,
Button4,
EncoderButton,
Max,
};
#endif