赞
踩
在这里插入代码片
@TOC
单片机型号:89C516
晶振24M
#include "reg52.h"
#include "oled.h"
/*******************************Main*******************************/
void main(void)
{
Initial_M096128x64_ssd1306();
//Delay_1ms(5);
while(1)
{
Picture();//显示一张图片
}
}
#include "reg52.h"
#include <bmp.H>
#include <I2C.h>
#ifndef __OLED_H
#define __OLED_H
unsigned char index;
void initial_M096128x64_ssd1306();
void Delay_50ms(unsigned int Del_50ms);
void fill_picture(unsigned char fill_Data);
void Picture();
void badapple();
void Picture()
{
unsigned char x, y;
unsigned int i=0;
{
for(y=0;y<8;y++) //循环8页
{
Write_IIC_Command(0xb0+y); //页地址
Write_IIC_Command(0x0); //设置低位列地址
Write_IIC_Command(0x10); //设置高位列地址
IIC_Start();
Write_IIC_Byte(0x78); //I2c发送地址
Write_IIC_Byte(0x40); // 发送数据
for(x=0; x<128; x++) //循环128次代表128列数据
{
Write_IIC_Byte(show[index][i++]); //发送数据表,index代表数组行,I代表列数据
}
IIC_Stop();
}
Delay_50ms(14);
index++;
if(index==56)
{
index=0;
}
}
}
/***********************Delay****************************************/
void Delay_50ms(unsigned int Del_50ms)
{
unsigned int m;
for(;Del_50ms>0;Del_50ms--)
for(m=6245;m>0;m--);
}
void Initial_M096128x64_ssd1306()
{
Write_IIC_Command(0xAE);//--显示关闭
//设置复用比
Write_IIC_Command(0xA8);//--设置复用比例(1 ~ 64)
Write_IIC_Command(0x3f);//--1/64 duty
//设置显示偏移D3H
Write_IIC_Command(0xD3);//-设置显示偏移移位映射RAM计数器(0x00~0x3F)
Write_IIC_Command(0x00);//-not offset
//设置显示i开始行40H,这个命令设置显示开始行寄存器来决定显示RAM的开始地址,
//通过选择0到63的值。当值为0是,RAM行0映射到COM0,当值为1时,RAM行1映射到COM0,以此类推。
Write_IIC_Command(0x40);//-设置映射RAM显示起始线(0x40~0x7f)
//设置断重映射
//?
//设置COM输出扫描方向
Write_IIC_Command(0xC8);//设置“COM/Row扫描方向” 0xc0上下反置 0xc8正常
Write_IIC_Command(0xA1);//--Set SEG/Column Mapping 0xa0左右反置 0xa1正常
//设置COM引脚硬件配置A[5:4]
Write_IIC_Command(0xDA);//--设置com引脚硬件配置
Write_IIC_Command(0x12);//系统默认值
//设置对比度00h-ffh
Write_IIC_Command(0x81);//设置对比度控制寄存器
Write_IIC_Command(0xCF); //设置SEG输出电流亮度
//全部显示开启(A4H A5H)
Write_IIC_Command(0xA4);// A4命令打开显示,依据GGRAM中的内容输出显示,
//设置正常/反相显示
Write_IIC_Command(0xA6);// 设置正常显示(0xa6/a7)
//设置OSC频率D5H A[3:0] 振荡器频率,可以通过命令D5h A[7:4]修改。值越大频率越大。
Write_IIC_Command(0xD5);//--设置pre-charge时期
Write_IIC_Command(0xF1);//设置预充电为15个时钟&放电为1个时钟
//启用电荷泵
Write_IIC_Command(0x8D);//--电荷泵使能
Write_IIC_Command(0x14);//--打开电荷泵
//设置寻址模式
Write_IIC_Command(0x20);//-设置页面寻址模式(0x00/0x01/0x02)
Write_IIC_Command(0x10);//00,水平寻址方式;01,垂直寻址方式;10,页面寻址模式(复位);11,无效~
Write_IIC_Command(0xAF);//打开显示
}
#endif
/*******************************************8
I^2C通讯时序
*******************************************/
#ifndef _i2c_h_
#define _i2c_h_
#define high 1
#define low 0
sbit SCL=P1^0;
sbit SDA=P1^1;
void IIC_Start();
void IIC_Stop();
void Write_IIC_Command(unsigned char IIC_Command);
void Write_IIC_Data(unsigned char IIC_Data);
void Write_IIC_Byte(unsigned char IIC_Byte);
/**********************************************
//启动信号
**********************************************/
void IIC_Start()
{
SCL = high;
SDA = high;
SDA = low;
SCL = low;
}
/**********************************************
//停止信号
**********************************************/
void IIC_Stop()
{
SCL = low;
SDA = low;
SCL = high;
SDA = high;
}
/**********************************************
// 写入一个字节
**********************************************/
void Write_IIC_Byte(unsigned char IIC_Byte)
{
unsigned char i;
for(i=0;i<8;i++)
{
if(IIC_Byte & 0x80)
SDA=high;
else
SDA=low;
SCL=high;
SCL=low;
IIC_Byte<<=1;
}
SDA=1;//8位发送完以后,释放数据线,以检测从机应答
SCL=1;//拉高时钟线
//此处可以添加读取SDA的值,即为从机应答值
SCL=0;//拉低时钟,挖成应答位,并保持住中线占用
}
/**********************************************
// 写入命令
**********************************************/
void Write_IIC_Command(unsigned char IIC_Command)
{
IIC_Start();
Write_IIC_Byte(0x78); //Slave address,SA0=0
Write_IIC_Byte(0x00); //write command
Write_IIC_Byte(IIC_Command);
IIC_Stop();
}
/**********************************************
// 写入数据
**********************************************/
void Write_IIC_Data(unsigned char IIC_Data)
{
IIC_Start();
Write_IIC_Byte(0x78); //D/C#=0; R/W#=0
Write_IIC_Byte(0x40); //write data
Write_IIC_Byte(IIC_Data);
IIC_Stop();
}
#endif
#ifndef __BMP_H_
#define __BMP_H_
/***********************Picture Code**************************/
unsigned char code show[][1024]=
{
{----数据太多---- },
{----数据太多---- },
};
#endif
先将视频提取帧,我用的是DVDVideoSoft Free Studio软件提取帧
然后用美图秀秀将图片批量裁剪,并变2色值图片的BMP格式,
最后使用PCtoLCD2002提取字模
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。