搜索结果

找到约 26 项符合 65536 的查询结果

系统设计方案 此题目是通过键盘来实现密码输入是否正确

此题目是通过键盘来实现密码输入是否正确,正确的时候数码管亮,否则发出报警声。 判断是按键还是干扰是非常有用的,它体现了一个系统的抗干扰能力。高低电平在瞬间的变换是很正常的,如果没有这条语句,系统很容易出错。 其中2秒是由定时器0来完成的。 在程序的定时器中断中,用switch代替了if else结构,使得程序的可读 ...
https://www.eeworm.com/dl/678/468448.html
下载: 54
查看: 1046

微处理器开发 完整的原创单片机控制彩色液晶源代码(keil工程) 320x240液晶模块底层驱动 控制芯片5408 CPU LPC2131(or Higher) 开发环境 keil C for ARM (MDK

完整的原创单片机控制彩色液晶源代码(keil工程) 320x240液晶模块底层驱动 控制芯片5408 CPU LPC2131(or Higher) 开发环境 keil C for ARM (MDK3.01) 65536色显示 支持16*16 12*12字库 支持图形 支持触摸 所以程序模块化设计便于移植
https://www.eeworm.com/dl/655/477088.html
下载: 94
查看: 1098

VHDL/FPGA/Verilog (1) 计数器的输入为RST(复位)

(1) 计数器的输入为RST(复位),EN(使能),CLK(时钟),U_D(up_down加/减选择);输出为COUT(进位/借位输出),CQ(3:1)(数值输出); 范围65536。
https://www.eeworm.com/dl/663/483393.html
下载: 162
查看: 1048

单片机编程 用定时器以间隔500MS在6位数码管上依次显示0、1、 2、3….C、D、E、F,重复。

#include<reg51.h> #define uchar unsigned char #define uint unsigned int uint i,j; sbit dula=P2^6; sbit wela=P2^7; uchar code table[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d, 0x7d,0x07,0x7f,0x6f,0x77,0x7c, 0x39,0x5e,0x79,0x71}; void main() {  j=0; i=0;     TMOD=0X01; TH0=(65536-50000)/256; TL ...
https://www.eeworm.com/dl/509595.html
下载: 1
查看: 605

嵌入式综合 调光C程序

/*#include<reg52.h> #define uint unsigned int #define uchar unsigned char #define uchar unsigned char sbit K1=P3^4; sbit K2=P3^5; sbit ledr=P1^0; sbit ledg=P1^1; sbit ledb=P1^2; bit LEDDirection=0;//LED控制方向0:渐亮1:渐灭 char  pwm=0; char  pwmr=0; char  scw=0;//中断记数 char &nbsp ...
https://www.eeworm.com/dl/512142.html
下载: 3
查看: 132

源码 矩阵式键盘

include<reg52.h> #define uint unsigned int #define uchar unsigned char uint temp,aa,wang,qian,bai,shi,ge; sbit dula=P2^6; sbit wela=P2^7; uchar code table[]={ 0x3f,0x06,0x5b,0x4f, 0x66,0x6d,0x7d,0x07, 0x7f,0x6f,0x77,0x7c, 0x39,0x5e,0x79,0x71}; void display( uint wa ...
https://www.eeworm.com/dl/747398.html
查看: 16