资源简介
i2c测试代码,由于lm75温度传感器测试
代码片段和文件信息
#include
#include
#include
#include
#include
#define I2C_SLAVE 0x0703
int main(int argcchar **argv)
{
int fd;
int addr = 0x48; /* The I2C address */
char register_addr = 0x0; /* Device register to access 0x0*/
char rbuf[10];
fd = open(“/dev/i2c-0“ O_RDWR);
if (fd < 0) {
/* ERROR HANDLING; you can check errno to see what went wrong */
perror(“open failed“);
exit(1);
}
/*发器件地址*/
if (ioctl(fd I2C_SLAVE addr) < 0) {
/* ERROR HANDLING; you can check errno to see what went wrong */
perro
- 上一篇:sniffer.zip32759
- 下一篇:原版官方稳定版本Lwip1.4.1
相关资源
- 树莓派用I2C读取mpu9250代码
- HDC1080 模拟I2C驱动
- LiquidCrystal_I2C
- SN8F5708_Sample_Code_V0.3.rar
- 28335 i2c 使用及注意
- DSP28335的I2C例程
- 51_I2C模拟通信
- MSP430单片机I2C应用笔记
- arduino的i2c库 完整版
- f407_mpu6050.rar
- STM32F AT24c02软件驱动程序
- I2C总线的verilog代码
- I2C总线proteus测试
- 基于STM32的 ADXL345三轴测量角度 软件
- linux下使用IIC总线读写EEPROM
- arduino_LiquidCrystal_I2C库及proteus仿真LC
- 最完美的STM32读写I2C EEPROM驱动
- stm32 软件I2C 实验
- 读写I2C FLASH的Verilog程序
- I2C 控制器的 Verilog源程序
- ads1115驱动,msp430f149单片机
- 群星系列流明单片机的I2C写法
- I2C总线规范与I2C器件C51读写程序
- stm32 完整IIC通讯代码,三轴加速度计
- STM32F4读写SD2405实时时钟程序
- Qt_USB_I2C_MPU6050.rar
- I2C飞利浦官方详细说明文档
- Arduino I2Cdev库
- BS8112A-3 BS8116A-3 I2C IO模拟程序
- CC2530-ADXL345 IIC通信
评论
共有 条评论