• 大小: 1KB
    文件类型: .c
    金币: 1
    下载: 0 次
    发布日期: 2021-06-23
  • 语言: 其他
  • 标签: i2c  

资源简介

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

评论

共有 条评论