Java教程

led_test

本文主要是介绍led_test,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>


int main(int argc, char *argv[])
{
//调用驱动

int fd;
int value = 0;

fd = open("/dev/led0", O_RDWR);
if(fd < 0)
{
perror("open");
exit(1);
}

read(fd, &value, 4);

printf("___USER___: value = %d\n", value);


//应用程序去控制灯到亮和灭

while(1)
{
value = 0;
write(fd, &value, 4);
sleep(1);

value = 1;
write(fd, &value, 4);
sleep(1);

}


close(fd);

return 0;

}

 

这篇关于led_test的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!