-
KMV
计算KMV模型的MATLAB代码,用于信用风险分析(for model KMV,it is used for credit risk analyses)
- 2020-09-11 22:18:02下载
- 积分:1
-
DDSRFSPLL
matlab下的双同步解耦坐标系的锁相环仿真(PLL simulation of double synchronous decoupling coordinate system under Matlab)
- 2021-03-27 19:59:12下载
- 积分:1
-
Hope everyone has to help, there is hope that everyone in the contest, the elect...
希望对大家有帮助,还有希望大家都能在大赛里,电子设计中,取的好成绩.-Hope everyone has to help, there is hope that everyone in the contest, the electronic design, get good results.
- 2022-07-09 12:01:08下载
- 积分:1
-
windows内核的C#定时播放器源码
windows内核的C#播放器源码,支持定时功能的播放器,可设置定时规则,比如星期几、几点几分,要播放的歌曲内容,然后启动播放器即可,不过在定时的周期内,电脑要一直运行着哦,不过这也是没办法的事。定时的音乐播放器以前见的少,这个是个很好的参考范例。
- 2022-08-15 19:22:23下载
- 积分:1
-
观察者模式-老板回来04
本源码为利用C#与EMGUCV调用摄像头,从而达到截屏的目的(The source code is to use C # and EMGUCV to call the camera, so as to achieve the purpose of screen capture.)
- 2020-06-24 12:40:02下载
- 积分:1
-
compiler "24 points. DSW "documents, the Debug directory will generate...
编译“新二十四点.dsw”文件,在Debug目录下会生成“新二十四点.exe”文件,直接双击该文件,即可运行二十四点程序。-compiler "24 points. DSW "documents, the Debug directory will generate" new 24 points. Exe "document, double-click the file directly, and can run the 24-point procedures.
- 2023-02-11 05:00:03下载
- 积分:1
-
智能优化算法及其MATLAB实例
matlab编程参考书籍,常见示例与编程说明(Matlab programming reference books)
- 2021-04-16 16:58:53下载
- 积分:1
-
d
说明: 该程序实现的是雷达压制干扰,初学者可以下载后在matlab跑跑,结合论文学习(The program is to suppress radar jamming, beginners can download and run in matlab, combined with paper learning.)
- 2019-06-22 22:06:31下载
- 积分:1
-
Wordvccod
AppWizard has created this WordAutomation application for you. This application
not only demonstrates the basics of using the Microsoft Foundation classes
but is also a starting point for writing your application.
- 2009-10-01 06:15:34下载
- 积分:1
-
1602显示驱动程序
说明: LCD1602的数据写入及CGRAM的使用
编程 2010-06-19 17:41:11 阅读84 评论0 字号:大中小 订阅
1.当使能端E由1变为0时,执行写指令,数据被写入。
例如,欲写入数据i到DDRAM:
void WDR(uchar i)
{
CheckBusy();//检忙
LCD_RS=1;
LCD_RW=0;
LCD_EN=0;
Delay();
LCD_DATA=i;//数据输出到定义端口
Delay();
LCD_EN=1;
Delay();
LCD_EN=0;//这一步才开始写入到LCD
Delay();
}
2.CGRAM
1602能存储8个自定义字符,这8个自定义字符存储空间的首地址分别是:0X40,0X48,0X50,0X58,0X60,0X68,0X70,0X78。
以0x40来说,它的存储空间如图所示:(riting of LCD1602 and the Use of CGRAM)
- 2020-06-23 13:20:02下载
- 积分:1