“CT107D V10 V20 原理图” 的相关文章
CT107D-流水灯(跑马灯的简单实现)
#include <reg52.h> #include <intrins.h> sbit relay=P0^4; //继电器 sbit buzzer=P0^6; //蜂鸣器...
CT107D-串口通信
串口通信能用到的寄存器:SCON PCON TMODSCON Serial Control Register 串口控制寄存器 0x98HSCON的各位定义及作用SM0 SM1 SM2 &n...
CT107D DS1302
使用官方的ds1302.h和ds1302.c,下方有核心代码讲解main.c#include<reg52.h> #include<intrins.h> #include<ds1302.h> typedef unsigned char&nb...
CT107D DS18B20
先贴上核心代码unsigned char get_temp(void) { unsigned char TH,TL; init_ds18b20(); Write_DS18B20(0xCC); Write_DS18B20(0x44); De...
CT107D DAC 电压模拟输出
/* 程序说明: IIC总线驱动程序 软件环境: Keil uVision 4.10 硬件环境: CT107单片机综合实训平台 8051,12MHz...