搜索结果
找到约 8 项符合
TIME0 的查询结果
单片机开发 CCSC 16F877 TIME0基本程序。
CCSC 16F877 TIME0基本程序。
单片机开发 CoreRiver MCU C语言程序集! 包括:ADC/POWER/PWM/UART/TIME0
CoreRiver MCU C语言程序集!
包括:ADC/POWER/PWM/UART/TIME0
汇编语言 教学打铃系统 变量定义 scl bit p3.3 sda bit p3.2 time0 equ 30H 秒Y time1 equ 31H 时Y time2 equ 32H 分Y tim
教学打铃系统
变量定义
scl bit p3.3
sda bit p3.2
time0 equ 30H 秒Y
time1 equ 31H 时Y
time2 equ 32H 分Y
time3 equ 33H 十毫秒次数控制Y
disp_t00 equ 35H 秒个位Y(右)
disp_t01 equ 36H 秒十位
disp_t10 equ 37H 分个位
disp_t11 equ 38H 分十位
disp_t20 equ 39H 时个位
disp_t21 equ 3aH 时十位Y(左) ...
单片机编程 基于PIC16F630制做的非接触式电容触感应开关
该项目是用PIC16F630单片机构建一个简单的电容式触摸感应开关方案。占用PIC16F630的片上比较器,内部基准电压,Time0定时器,Time1定时器。
单片机编程 基于PIC16F630制做的非接触式电容触感应开关
该项目是用PIC16F630单片机构建一个简单的电容式触摸感应开关方案。占用PIC16F630的片上比较器,内部基准电压,Time0定时器,Time1定时器。
技术资料 mc96F芯片代码例子
现代mc96F系列程序代码例程,包括了MC96F6432 Sample code MC96F6508A Sample code MC96F8316 Sample code例程,包含了 adc,buz,capture,pwm,spi,i2c,time0,time1, time2,wdt,wt,还有一个按键数码管显示程序,还有数据手册和原理图,ocd 调试器使用,使用keil c语言代码,调试没问题,欢迎大家共同学习进步。 ...
单片机编程 用定时器以间隔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()
{&nbsp;
j=0;
i=0;
&nbsp; &nbsp; TMOD=0X01;
TH0=(65536-50000)/256;
TL ...
嵌入式综合 调光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 &nbsp;pwm=0;
char &nbsp;pwmr=0;
char &nbsp;scw=0;//中断记数
char &nbsp ...