tag 标签: 12864液晶

相关资源
  • 所需E币: 3
    时间: 2019-12-24 16:23
    大小: 127.53KB
    上传者: 二不过三
    12864液晶显示FPGA开发板DIYauthor:zhrscut/*----------------------------------------------------------Engineer:zhrscut--CreateDate:--ModuleName:--ToolVersions:Quartus_II9.1--欢迎加入EEPW,FPGA开发板DIY活动--------------------------------------------------------*/modulelcd(clk,reset,rs,rw,en,dat,rst);inputclk;//±inputreset;//output[7:0]dat;//LCD×outputrs;//1:;0:outputrw;//1:×÷;0:×÷,outputen;//,×÷±;×÷±±outputrst;//lcd//----÷rege;reg[7:0]dat;regrs;reg[15:0]counter;reg[7:0]current;regdiv_clk;reg[1:0]cnt;//----רparameterset0=8'h00;parameterset1=8'h01;parameterset2=8'h02;parameterset3=8'h03;parameterset4=8'h45;……
  • 所需E币: 3
    时间: 2020-1-3 17:58
    大小: 62.5KB
    上传者: 978461154_qq
    在12864液晶上显示倒计时时间程序样例/***********************************************************程序功能:在12864液晶上显示倒计时时间-----------------------------------------------------------测试说明:观察液晶显示***********************************************************/#include"msp430.h"#include"BoardConfig.h"#defineSetTime(H,M,S){second=S;minute=M;hour=H;hour0=H;};typedefunsignedcharuchar;typedefunsignedintuint;#definecyCS0//P3.0,片选信号#definecySID1//P3.1,串行数据#definecyCLK2//P3.2,同步时钟#definecyPORTP3OUT#definecyDDRP3DIR/******************************************************************************************/constucharhang1[]={"定时时间"};constucharhang2[]={"确定"};constucharhang3[]={"退出"};constucharhang4[]={"时"};constucharhang5[]={"分"};constucharhang6[]=……