当前位置:首页 > MCU > CT107D

CT107D

  • 最新
  • 浏览
  • 评论

CT107D 频率计 蓝桥杯频率测量 可以测量0-65khz方波

chanra1n3年前 (2020-11-13)CT107D3489
CT107D 频率计  蓝桥杯频率测量 可以测量0-65khz方波
基于STC的官方示例文件完成编写,推荐STC单片机,性能稳定 使用时请使用杜邦线连接P3_2引脚和555发生的SIGNAL引脚#include "reg51.h" #include "intrins.h" typedef&nb...

CT107D V10 V20 原理图

chanra1n3年前 (2020-11-10)CT107D4731
CT107D V10 V20 原理图
CT107D单片机竞赛板V10原理图.pdfCT107D单片机竞赛板V20原理图.pdfIAP15转接板原理图.pdf...

CT107D DAC 电压模拟输出

chanra1n4年前 (2020-10-16)CT107D3418
CT107D DAC 电压模拟输出
/*   程序说明: IIC总线驱动程序   软件环境: Keil uVision 4.10    硬件环境: CT107单片机综合实训平台 8051,12MHz...

CT107D ADC 光敏电阻

chanra1n4年前 (2020-10-16)CT107D4031
CT107D ADC 光敏电阻
#include<iic.h> #include "reg52.h" #include "intrins.h" typedef unsigned char BYTE; typedef&nbs...

CT107D 数码管动态显示

chanra1n4年前 (2020-10-16)CT107D3583
CT107D 数码管动态显示
#include<reg52.h> #include<intrins.h> void hdw_init(); void smg_refresh(); void Delay1ms(); unsigned char nu...

CT107D DS18B20

chanra1n4年前 (2020-10-15)CT107D3941
CT107D DS18B20
先贴上核心代码unsigned char get_temp(void) { unsigned char TH,TL; init_ds18b20(); Write_DS18B20(0xCC); Write_DS18B20(0x44); De...

CT107D DS1302

chanra1n4年前 (2020-10-15)CT107D4033
CT107D DS1302
使用官方的ds1302.h和ds1302.c,下方有核心代码讲解main.c#include<reg52.h> #include<intrins.h> #include<ds1302.h> typedef unsigned char&nb...

CT107D-串口通信

chanra1n4年前 (2020-09-11)CT107D3761
CT107D-串口通信
串口通信能用到的寄存器:SCON PCON TMODSCON Serial Control Register 串口控制寄存器 0x98HSCON的各位定义及作用SM0    SM1    SM2 &n...

CT107D-MM编程方法

chanra1n4年前 (2019-12-01)CT107D3649
CT107D-MM编程方法
#include <reg52.h> #include <absacc.h> void main() { XBYTE[0x8000]=0x00; }这是最简单的一个案例,我们使用MM编程方法需要使用的是XBYTE这个关键词,值得注意的...

CT107D-按键的使用(中断法)

chanra1n4年前 (2019-11-20)CT107D3612
CT107D-按键的使用(中断法)
#include <reg52.h> int main() { IE|=0x85; TCON|=0x05; while(1); return 0; } void key_32(void) interrupt&nb...