#include <sys/ioctl.h> #include<stdio.h> #include <fcntl.h> #include <sys/types.h> static int fb; int main() { int i=0; printf("hello world !\n"); fb = open("/dev/beep", O_RDWR); if (fb < 0) { perror("open device beep fail"); } for(i=0;i<100;i++) { ioctl(fb, 1, i); usleep(200000); } ioctl(fb, 0, 1);//关闭蜂鸣器驱动 close(); return 0; }
时间: 2024-10-23 09:05:19