Files
bobbycar-boardcomputer-firm…/main/dpad5wire.h
2022-08-06 23:35:34 +02:00

13 lines
205 B
C++

#pragma once
// system includes
#include <cstdint>
#ifdef FEATURE_DPAD_5WIRESW
namespace dpad5wire {
void init();
void update();
constexpr const uint8_t BUTTON_COUNT = 8;
} // namespace dpad5wire
#endif