博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
I.MX6 Android backlight modify by C demo
阅读量:6343 次
发布时间:2019-06-22

本文共 1829 字,大约阅读时间需要 6 分钟。

/************************************************************************** *             I.MX6 Android backlight modify by C demo * 说明: *     因为一些特殊情况,需要添加一个这个简单的控制程序来控制android背光 * 亮度,个人感觉是没有必要的,但是应要求还是加上。 * *                                      2016-5-14 深圳 南山平山村 曾剑锋 *************************************************************************/#include 
#include
#include
#include
#include
#include
#include
#include
#include
#define BACKLIGHT0_PATH "/sys/class/backlight/pwm-backlight.0/brightness"#define BACKLIGHT1_PATH "/sys/class/backlight/pwm-backlight.1/brightness"//#define BACKLIGHT0_PATH "brightness0"//#define BACKLIGHT1_PATH "brightness1"int help ( int argc );int isDigitalStr(char *str);int file_exists(char *filename);void writeStringToFile(char *filePath, char *string);int main(int argc, char **argv) { int bl0 = 0; int bl1 = 0; if ( help( argc ) != 0) return -1; if ( !isDigitalStr(argv[1]) ) { printf("Please give a numeric string.\n"); return -1; } writeStringToFile(BACKLIGHT0_PATH, argv[1]); writeStringToFile(BACKLIGHT1_PATH, argv[1]);}void writeStringToFile(char *filePath, char *string) { int fd = 0; if ( file_exists(filePath) ) { fd = open(filePath, O_RDWR); ftruncate(fd, 0); write(fd, string, strlen(string)); close(fd); }}int isDigitalStr(char *str){ int len = strlen(str); char *s = str; int i = 0; while( '0' <= *s && *s <= '9' && i < len){ s++; i++; } if(i == len) return 1; else return 0; }int file_exists(char *filename) { if (access(filename, F_OK) == 0) { return 1; } else { printf("%s is not exist.\n", filename); return 0; }}int help( int argc ) { if ( argc != 2 ) { printf ( "USAGE:\n" ); printf ( " backlight
\n" ); printf ( " example:\n" ); printf ( " backlight 0\n" ); return -1; } return 0;}

 

转载地址:http://gskla.baihongyu.com/

你可能感兴趣的文章
判断ie版本
查看>>
我的友情链接
查看>>
RabbitMQ(6)-Spring AMQP,Spring集成RabbitMQ
查看>>
azkaban3.x exec-server之jobtype
查看>>
使用RVM管理Ruby/Rails版本
查看>>
centos 7 tomcat 开机启动
查看>>
windows Nginx注册系统服务
查看>>
php-fpm CPU占用率过高的排查方法
查看>>
Linux下进行GPT分区
查看>>
如何在程序内退出iPhone程序
查看>>
话说Python【转载】
查看>>
我的友情链接
查看>>
SaltStack源码分析之service模块
查看>>
我的友情链接
查看>>
2013-7-17学习作业练习
查看>>
利用SVN的post-commit钩子实现多项目自动同步
查看>>
医疗卫生信息化、医学资料下载
查看>>
linux用户管理实验3:usermod命令
查看>>
2款比较炫的图片左右切换,放大效果。
查看>>
nginx下日志切割的shell
查看>>