1 Star 0 Fork 0

ElanWu/rx_ee_01_RotaryEncoder

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
hello.cpp 343 Bytes
一键复制 编辑 原始数据 按行查看 历史
ElanWu 提交于 2021-03-13 10:02 . test web editor
#include <array>
class Encoder {
bool is_busy;
public:
bool is_busy() const { return is_busy};
void send(unsigned char sig) { return; };
}
enum Sig: unsigned char { RMT_SIG_MOVE:0 };
int main()
{
Encoder rmt_sender;
if (not rmt_sender.is_busy())
{
rmt_sender.send(RMT_SIG_MOVE);
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/elanwu/rx_ee_01_RotaryEncoder.git
[email protected]:elanwu/rx_ee_01_RotaryEncoder.git
elanwu
rx_ee_01_RotaryEncoder
rx_ee_01_RotaryEncoder
master

搜索帮助