LCD屏的应用

一、LCD屏应用

Linux下一切皆文件,我们的LCD屏再系统中也是一个文件,设备文件:/dev/fb0。

如果要在LCD屏显示数据,那我们就可以把数据写入LCD屏的设备文件。

1.显示颜色块

LCD屏分辨:800*480 像素 32位:说明一个像素点占4个字节,ARGB A:透明度 R:红 G:绿 B:蓝

在LCD屏上显示一种颜色,代码实现步骤:

1、打开LCD屏设备文件

2、准备颜色数据

3、写入数据

4、关闭文件

练习1:再LCD屏显示一种颜色

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>#include <stdio.h>int main() {//打开LCD屏int lcd_fd = open("/dev/fb0", O_RDWR);if (lcd_fd == -1) {perror("open lcd failed!\n");return -1;}//写颜色数据到fb0int red = 0x00ff0000;int green = 0x0000ff00;int n;for(n=0; n<800*480; n++){write(lcd_fd, &red, 4);}//关闭文件close(lcd_fd);return 0;}

练习2:显示俄国的国旗(横屏显示)

练习3:显示法国的国旗(竖屏显示)

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>int main(void)
{int fd_lcd;int lcd_buf[800*480]; //显存。int -- 4Bint j,i;fd_lcd = open("/dev/fb0", O_WRONLY);if(fd_lcd == -1){perror("open lcd");return -1;}printf("fd_lcd = %d\n", fd_lcd);for(j=0;j<480;j++)//蓝296,白240,红264{for(i=0;i<296;i++)	lcd_buf[j*800+i]=0x000000FF;for(i=296;i<536;i++)  lcd_buf[j*800+i]=0x00FFFFFF;for(i=536;i<800;i++) lcd_buf[j*800+i]=0x00FF0000;}write(fd_lcd,lcd_buf,sizeof(lcd_buf));close(fd_lcd);return 0;
}

思考:如何显示圆球

3、显示圆球

圆的方程式:(x-x0)*(x-x0) + (y-y0)*(y-y0) = r*r

其中(x0,y0)是圆心坐标,r是半径

x0=400,y0=240,r=100

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>int main() {//打开LCD屏int lcd_fd = open("/dev/fb0", O_RDWR);if (lcd_fd == -1) {perror("open lcd failed!\n");return -1;}//写颜色数据到fb0int red = 0x00ff0000;int green = 0x0000ff00;int blue = 0x000000ff;int x,y;int x0 = 400,y0 = 240,r = 100;for(y=0; y<480; y++){for(x=0; x<800; x++){if((x-x0)*(x-x0) + (y-y0)*(y-y0) <= r*r){write(lcd_fd, &blue, 4);}else{write(lcd_fd, &red, 4);}}}//关闭文件close(lcd_fd);return 0;}

练习4:再LCD屏显示一个圆球

练习5:在LCD屏显示一个彩虹

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <error.h>
#include <unistd.h>
#include <sys/mman.h>int lcd_fd = -1;     //帧缓冲文件描述符
int * plcd = NULL;//帧缓冲设备//屏幕初始化
void CH_init()
{
int fd = open("/dev/fb0",O_RDWR);
if(fd==-1)
{
perror("open pingmv shibai");
}
lcd_fd = fd;
plcd = mmap(NULL,800*480*4,PROT_READ|PROT_WRITE,MAP_SHARED,fd,0);//映射到屏幕
}//画点函数
void huadian(int x0, int y0, int color)
{
if (x0 >= 0 && x0 < 480&&y0 >= 0 && y0 < 800  ){*(plcd + x0 * 800 + y0) = color;}
}//白屏
void chushihua()
{int color = 0xffffffff;for(int i = 0;i<480;i++){for(int j = 0;j<800;j++){huadian(i,j,color);}}
}//画圆函数
void huayuan()
{
int color[800*480]={0};
for(int i=0;i<480;i++)
{
for(int j=0;j<800;j++){if((i-480)*(i-480)+(j-400)*(j-400)>122500 && (i-480)*(i-480)+(j-400)*(j-400)<160000) {huadian(i,j,0x0F0FFaa0);}if((i-480)*(i-480)+(j-400)*(j-400)>90000 && (i-480)*(i-480)+(j-400)*(j-400)<122500) {huadian(i,j,0x0F0F0F00);}if((i-480)*(i-480)+(j-400)*(j-400)>62500 && (i-480)*(i-480)+(j-400)*(j-400)<90000) {huadian(i,j,0x0F0FFFF0);}}
}
}//关闭屏幕
void guanbi_init()
{
munmap(plcd,800*480*4);
plcd = NULL;
close(lcd_fd);
}int main()
{
CH_init();
chushihua();
huayuan();
guanbi_init();
}

练习6:在LCD屏显示一个太极图

#include<stdio.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<fcntl.h>
#include <sys/mman.h>
#include<unistd.h>
#include<math.h> 
int *plcd = NULL;
#define WHITE 0x00FFFFFF 
#define BLAK 0x00000000 
void draw_point(int x, int y, int color)
{if (x >= 0 && x<800 && y >= 0 && y<480){*(plcd + y * 800 + x) = color;}
}void draw_circle(int x, int y,double r ,int color)
{if (x >= 0 && x<480 && y >= 0 && y<800){for (double i = 0; i < 480; i++){for (double j = 0; j < 800; j++){double all=(i-x)*(i-x)+(j-y)*(j-y);double fc=sqrt(all);if(r>fc){draw_point(j, i, color);//	printf("fc=%lf\n",fc);}}}}
}void draw_circle_b(int x, int y,double r ,int color)
{if (x >= 0 && x<480 && y >= 0 && y<800){for (double i = 0; i < 480; i++){for (double j = 0; j < 800; j++){if(i<x){double all=(i-x)*(i-x)+(j-y)*(j-y);double fc=sqrt(all);if(r>fc){draw_point(j, i, color);//	printf("fc=%lf\n",fc);}					}}}}
}void clear(int color)
{int x,y;for(y=0;y<480;y++){for(x=0;x<800;x++){draw_point(x,y,color);}}
}int main()
{int lcd_fd = open("/dev/fb0",O_RDWR);if (lcd_fd == -1){perror("open lcd fail");}plcd = mmap(NULL, 800 * 480 * 4, PROT_READ | PROT_WRITE, MAP_SHARED,lcd_fd,0);if (plcd==NULL){perror("mmao  fail");}int color = 0x0000FFFF;clear(0x00666666);draw_circle(240, 400,200, BLAK);draw_circle_b(240, 400,200, WHITE);draw_circle(240, 300,100, WHITE); draw_circle(240, 500,100, BLAK); draw_circle(240, 300,25, BLAK); draw_circle(240, 500,25, WHITE); //	draw_circle(240, 400,50, color);  close(lcd_fd);munmap(plcd,800*480*4);return 0;
}

回去准备图片

bmp格式,分辨率800*480,24位,1.09M

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/544127.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

算法打卡day19|二叉树篇08|Leetcode 235. 二叉搜索树的最近公共祖先、701.二叉搜索树中的插入操作、450.删除二叉搜索树中的节点

算法题 Leetcode 235. 二叉搜索树的最近公共祖先 题目链接:235. 二叉搜索树的最近公共祖先 大佬视频讲解&#xff1a;二叉搜索树的最近公共祖先视频讲解 个人思路 昨天做过一道二叉树的最近公共祖先&#xff0c;而这道是二叉搜索树&#xff0c;那就要好好利用这个有序的特点…

Vue 全家桶

第 1 章&#xff1a;Vue 核心 第 2 章&#xff1a;vue 组件化编码 第 3 章&#xff1a;vue-ajax 第 4 章&#xff1a;vue UI组件 第 5 章&#xff1a;vue-router 第 6 章&#xff1a;vuex 第 7 章&#xff1a;vue源码分析

Internet协议的安全性

Internet协议的安全性 文章目录 Internet协议的安全性1. 网络层1. IP*62. ARP*33. ICMP * 3 2. 传输层协议1. TCP1. * SYN-Flood攻击攻击检测* 防御 2. TCP序号攻击攻击 3. 拥塞机制攻击 2. UDP 3. 应用层协议1. DNS攻击*3防范*3: 2. FTP3. TELNET: 改用ssh4. 电子邮件1. 攻击2…

python二级备考(3)-综合应用

1 《命运》是著名科幻作家倪匡的作品。这里给出《命运》的一个网络版本文件&#xff0c;文件名为“命运. txt”。 问题1 (5分) :在PY301-1. py文件中修改代码&#xff0c;对“命运. txt”文件进行字符频次统计&#xff0c;输出频次最高的中文字符(不包含标点符号)及其频次&…

Java学习笔记------常用API(五)

爬虫 从网站中获取 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.MalformedURLException; import java.net.URL; import java.net.URLConnection; import java.util.regex.Matcher; import java.util.reg…

MySQL语法分类 DQL(4)聚合函数

为了更好的学习这里给出基本表数据用于查询操作 create table student (id int, name varchar(20), age int, sex varchar(5),address varchar(100),math int,english int );insert into student (id,name,age,sex,address,math,english) values (1,马云,55,男,杭州,66,78),…

php中 0 == ‘’(0等于任意字符串) 判断是否成立 返回true

php中不同类型变量之间比较大小 一、背景二、探究0是为什么&#xff1f;三、探究 0all是为什么&#xff1f;四、程序中如何判断0是否等于指定字符串 一、背景 最近在项目实际开发中&#xff0c;我需要判断前端传来的参数值是否等于一个字符串&#xff1b;然后发现当参数值是0时…

鸿蒙Harmony应用开发—ArkTS声明式开发(容器组件:Tabs)

通过页签进行内容视图切换的容器组件&#xff0c;每个页签对应一个内容视图。 说明&#xff1a; 该组件从API Version 7开始支持。后续版本如有新增内容&#xff0c;则采用上角标单独标记该内容的起始版本。 该组件从API Version 11开始默认支持安全区避让特性(默认值为&#x…

L1-070 吃火锅分数 15

我们老师的话说就是&#xff0c;你学长睡了四年的床板子你不收拾收拾就往上躺着睡觉吗&#xff1f;&#xff1f;&#xff1f;一定要记得用到计数变量时首先要赋初值0或者其他&#xff0c;按题目要求来。 用 输入样例 1&#xff1a; Hello! are you there? wantta chi1 huo3…

Python爬虫 Day1

要注意看网页的请求方式是request还是get 一、小型爬虫 &#xff08;爬百度首页&#xff09; from urllib.request import urlopen url "https://www.baidu.com" resp urlopen(url) print(resp.read().decode(utf-8)) print("over!") //&#xff01;&am…

Linux磁盘配额

磁盘配额 概述 Linux系统作为一个多用户的操作系统&#xff0c;在生产环境中&#xff0c;会发生多个用户共同使用一个磁盘的情况&#xff0c;会造成Linux根分区的磁盘空间耗尽&#xff0c;导致Linux系统无法建立新的文件&#xff0c;从而出现服务程序崩溃、系统无法启动等故障…

Transformer学习笔记(二)

一、文本嵌入层Embedding 1、作用&#xff1a; 无论是源文本嵌入还是目标文本嵌入&#xff0c;都是为了将文本中词汇的数字表示转变为向量表示&#xff0c;希望在这样的高维空间捕捉词汇间的关系。 二、位置编码器Positional Encoding 1、作用&#xff1a; 因为在Transformer…