搜索结果

找到约 416 项符合 char 的查询结果

单片机开发 PC与单片机双向通讯智能温控程序 #include <AT89X51.H> #include <intrins.h> #define Key_UP P1_0 #def

PC与单片机双向通讯智能温控程序 #include <AT89X51.H> #include <intrins.h> #define Key_UP P1_0 #define Key_DOWN P1_1 #define Key_SET P1_2 #define RelayOutPort P2_0 #define LEDPort P0 #define DELPort P2_1 #define LEDTwoC P3_6 #define LEDThreeC P3_7 #define TMPort P2_7 #define INBUF_LEN 5 // ...
https://www.eeworm.com/dl/648/397163.html
下载: 61
查看: 1110

软件设计/软件工程 顺序栈的出栈、入栈、求栈长等基本操作 #include <stdio.h> #include <stdlib.h> #define STACKSIZE 50 typed

顺序栈的出栈、入栈、求栈长等基本操作 #include <stdio.h> #include <stdlib.h> #define STACKSIZE 50 typedef char DateType typedef struct
https://www.eeworm.com/dl/684/456766.html
下载: 170
查看: 1223

其他文档 Ascii码的88点阵数据.rar

Ascii码的8*8点阵数据,竖着排的。 code unsigned char asc5x8dot[96][5]={//ASC码0x20~0x7f
https://www.eeworm.com/dl/536/7689.html
下载: 189
查看: 1098

单片机开发 24C01的读写程序

24C01的读写程序,C51源代码 调用方式:write_8bit(unsigned char ch) ﹫2001/03/23 函数说明:内函数,私有,用户不直接调用。
https://www.eeworm.com/dl/648/181221.html
下载: 129
查看: 1068

编译器/解释器 UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, wh

UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, which is a reasonably faithful subset. This documentation describes those UnderC functions and classes which are not part of the C++ standard. UC Library Builtin functions: Most of these are standard C ...
https://www.eeworm.com/dl/628/235248.html
下载: 140
查看: 1054

嵌入式/单片机编程 #include <stc12c2052AD.H>// 标准库的头文件 #include <intrins.h> #include <absacc.h> #d

#include <stc12c2052AD.H>// 标准库的头文件 #include <intrins.h> #include <absacc.h> #define uchar unsigned char #define uint unsigned int
https://www.eeworm.com/dl/647/339308.html
下载: 104
查看: 1460

技术资料 温度控制的PID算法的C语言程序.

#nclude<reg51.h>#include<intrins.h>#销nclude<math.h>#include<string.h>struct PID{unsigned int SetPoint;//设定目标 Desired Value unsigned int Proportion;//比例常数Proportional Const unsigned int integral;//积分常数Integral Const unsigned int Derivative://微分常数Derivative Const unsigned int LastE ...
https://www.eeworm.com/dl/837901.html
下载: 1
查看: 3457

单片机开发 /*** *5510单片机测试程序 基本测试成功 2005-8-25 write By CW *** *** *** *** *** ****/ #include <

/*** *5510单片机测试程序 基本测试成功 2005-8-25 write By CW *** *** *** *** *** ****/ #include <reg52.h> #include <absacc.h> #define uint unsigned int #define uchar unsigned char
https://www.eeworm.com/dl/648/158345.html
下载: 184
查看: 1135

技术资料 SHT11温湿度检测

char s_measure(unsigned char *p_value, unsigned char *p_checksum, unsigned char mode){unsigned error=0;unsigned int i;s_transstart(); //启动传输switch(mode) //选择发送命令{case TEMP : error+=s_write_byte(MEASURE_TEMP); break; //测量温度case HUMI : error+=s_write_byte(MEASURE_HUMI); break; //测量湿度 ...
https://www.eeworm.com/dl/893732.html
下载: 6
查看: 8210

源码 单片机用精度除法函数

精度除法函数。 调用函数,并输入被除数、除数和精确到小数点后多少位。即可得到商的整数部分和小数部分。 /*************************精度除法函数********************************/ //======================================================================== // 函数: Void chufa(unsigned long beichushu,u ...
https://www.eeworm.com/dl/517207.html
下载: 2
查看: 63