7 Star 2 Fork 1

NKEO2333/sleepHelper

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
beeper.h 547 Bytes
一键复制 编辑 原始数据 按行查看 历史
NKEO2333 提交于 2024-08-22 23:20 . 添加心率界面
#ifndef BEEPER_H
#define BEEPER_H
#include <stdint.h>
#include <string.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <linux/input.h>
#include <unistd.h>
class Beeper {
public:
Beeper(const char* device = "/dev/input/event0");
~Beeper();
bool initialize();
void beepOnce(int duration_ms);
void beepPattern();
void turnOn();
void turnOff();
private:
int fd;
int ret;
struct input_event event;
const char* devicePath;
void wait_ms(int milliseconds);
};
#endif // BEEPER_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/NEKO12580/sleephelper.git
git@gitee.com:NEKO12580/sleephelper.git
NEKO12580
sleephelper
sleepHelper
master

搜索帮助