-
sxsapir
适合初学者学习,好的算法和程序,非常需要的可以下载看看(Suitable for beginners to learn, good algorithms and procedures, very much needed to download to see.)
- 2018-10-11 23:02:53下载
- 积分:1
-
filedivide
说明: 这是一个界面优秀的文件分割联合程序源代码 (This is a good document interface undivided joint program source code)
- 2006-05-02 23:06:11下载
- 积分:1
-
20081030104056Uart
基于zigbee的定位系统程序,能够实现单个节点和多个极点的定位功能(Zigbee-based positioning system procedures, be able to achieve a single node and multi-pole positioning function)
- 2021-03-09 21:59:27下载
- 积分:1
-
LinGIS
DotNetBar 7.3 在C#环境下的GIS桌面系统,界面非常美观,值得借鉴。
(DotNetBar 7.3 and ArcEngine)
- 2010-05-28 14:27:24下载
- 积分:1
-
baoshu
报数问题。n个人围成一圈,1,2,3循环报数,报到3的人退出。到最后只余1人,输出最后留下的是第几号(最初的序号,以1起始)。压缩包内共三种方法。(Reported several problems. n personal circle, 1,2,3 newspaper circulation numbers, to report three people quit. To the final with only one person, the output of the last to leave the first few numbers (the first number, starting with 1). Three methods of compression package.)
- 2013-12-18 23:08:53下载
- 积分:1
-
C#modbus rtu绝对好用,绝对能用
说明: C#使用的modbus通讯协议编程。。真实可靠有用(C_modbus communication protocol programming. True, reliable and useful)
- 2020-06-17 03:20:01下载
- 积分:1
-
TestWorkFlow
说明: 此软件是用于Diagramshpe绘图,可用于学习如何制作流程图。(This software is used for Diagramshpe drawing and can be used to learn how to make flow charts.)
- 2020-06-16 10:40:01下载
- 积分:1
-
OLED12864设计方案0.96OLED
ED12864显示屏设计方案(原理图 PCB BOM表 程序)
一、简介
OLED 屏幕作为一种新型的显示技术,其自身可以发光,亮度,对比度高,功耗低,在当下备受追捧。而在我们正常的显示调整参数过程中,我们越来越多的使用这种屏幕。我们使用的一般是分辨率为 128×64 ,屏幕尺寸为 0.96 寸。由于其较小的尺寸和比较高的分辨率,让它有着很好的显示效果和便携性。
目前我们经常使用的 OLED 屏幕一般有两种接口,IIC 或者 SPI ,两者使用的通信协议稍有不同,这里以 SPI 协议的 OLED 屏幕为例,带来它的使用方法。
模块接口定义
二、原理
如何控制每个像素的显示
这个屏幕的像素矩阵的划分是比较特殊的, 整个屏幕水平方向划分为8个page, 垂直方向则是按像素划分为128 column. 每个page-column包含8个像素, 通过一个十六进制数(其实就是一个字节, 8个bit)来控制, 每个bit控制一个像素。
即储存寄存器每个存储点的0/1控制(映射)一个像素点的亮/灭。
如果我们要在左上角显示一个亮点, 需要发送0x01(16进制的1)到数据地址, 例如:
Wire.beginTransmission(0x3C); // 控制指令
Wire.write(0x40); // 写地址
Wire.write(0x01); // 写数据
Wire.endTransmission(); // 结束
三、设计方案
原理图:
PCB:
程序:
51单片机程序
STM32程序
- 2021-10-21 00:31:04下载
- 积分:1
-
essentialcom
This is a good book for the windows com.
- 2009-05-12 09:42:02下载
- 积分:1
-
CUdpSocket是为了简化发送,解析UDP 数据报所提供的一个基类。这个类封装了基于SOCK_DGRAM的大部分基本操作。这个类提供两种工作模式,一种是和实...
CUdpSocket是为了简化发送,解析UDP 数据报所提供的一个基类。这个类封装了基于SOCK_DGRAM的大部分基本操作。这个类提供两种工作模式,一种是和实际处理UDP 数据报的功能紧耦合,这需要通过继承实现,同时设置workmode 为auto_receive(参见SetWorkdMode),另外一种是直接作为单独对象出现,此时用户需要使用Recv成员函数自己处理数据的接收。-CUdpSocket is to simplify this, the analytical data reported by the UDP with a base class. This type of packaging based SOCK_DGRAM the most basic operation. This provides two types of work, is a practical and UDP data processing function of tight coupling, it needs to achieve through inheritance, as set workmode auto_receive (see SetWorkdMode), the other is directly emerging as a separate object, users need to use this member function since Recv others receiving data processing.
- 2023-07-22 21:35:02下载
- 积分:1