-
TMP75数据手册
zigebee 自己从网上查到的数据手册 方便下载
#include"iocc2530.h"
#include"uart.h"
#include"clock.h"
/*管脚定义是
SDA定义为P0.7
SCL定义为P0.6 */
//#define SCL P0_6
//#define SDA P0_7
#define TRUE 1
#define FALSE 0 //错误提示,全局变量
#define SlaveAddress 0x90 //定义器件在IIC总线中的从地址,根据SA0地址引脚不同修改
#define SET_SDA_OUT P0DIR |= 0x8c;
#define SET_SDA_IN P0DIR &= ~0x8c;
#define SET_SCL_OUT P0DIR |= 0x4c;
#define SCL_H() P0DIR |= 0x40; P0_6 = 1;
#define SCL_L() P0DIR |= 0x40; P0_6 = 0;
#define SDA_H() P0DIR |= 0x80;P0_7 = 1;
#define SDA_L() P0DIR |
- 2022-10-15 21:25:08下载
- 积分:1
-
ATT7022B_Note
电力测量芯片ATT7022b的应用笔记,值得参考(Power Measurement Chip ATT7022b application notes, reference should be)
- 2010-07-14 11:56:23下载
- 积分:1
-
tuoputu
该程序可以实现网络拓扑图自动生成·是进行网络仿真拓扑图生成不可缺少的一部分,根据matlab下的程序修改过来,可以在VC环境下运行(The program can achieve network topology automatic generation is topological of network simulation is an indispensable part of, according to the procedure under Matlab modified, can run in VC environment)
- 2011-12-15 11:44:51下载
- 积分:1
-
openvc测试
opencv安装成功后进行的测试,确保opencv功能正确。代码关乎图像显示。
- 2022-04-08 06:15:35下载
- 积分:1
-
ImageResample
说明: 图像伸缩算法,实现图像的任意尺寸放大和缩小,采用高精度伸缩算法。(High quality image resample algorithm.)
- 2009-09-01 16:24:29下载
- 积分:1
-
day13经典案例
C++经典案列-1,推荐给学习c++的朋友好好研究一下(C++ classic case -1, recommended to c++ learning friends to study carefully.)
- 2018-06-19 23:22:34下载
- 积分:1
-
Np驱动源码
说明: 读写游戏内存,可以读写任意游戏进程信息,居家旅行必备工具(Read and write game memory, can read and write any game process information)
- 2020-08-12 16:18:26下载
- 积分:1
-
Jendela
This is a simple code for create window
- 2014-01-10 15:22:27下载
- 积分:1
-
gun_na37
pwm整流器的建模仿真,感应双馈发电机系统的仿真,复化三点Gauss-lengend公式求pi。( Modeling and simulation pwm rectifier Simulation of doubly fed induction generator system, Complex of three-point Gauss-lengend the Formula pi.)
- 2017-05-10 10:04:05下载
- 积分:1
-
C# 立方体三维旋转动画实例代码
C# 玩转三维空间,编写实现一个立方体的三维旋转动画特效,运行本程序,会看到窗口中有一个3D立方体,不停旋转,视角改变平滑,看似简单的动画,实际上编写起来挺麻烦,代码文件比较多,而且是一个来自国外的C# 源代码,注释也是英文的,这个实例用到了C#的float、ThreeDMatrix()、ThreeDObject()、ThreeDPolygon(points)、ThreeDPoint、ArrayList()等众多方法,对学习C#的图像渲染有一定参考价值。
- 2023-01-09 01:55:03下载
- 积分:1