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

13 lines
206 B
C++

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