ESP32使用arduino的官方的iic从机代码编译时出现报错??-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 2421|回复: 1

[未解决] ESP32使用arduino的官方的iic从机代码编译时出现报错??

[复制链接]
发表于 2019-5-2 21:17 | 显示全部楼层 |阅读模式
ESP32使用arduino的官方的iic从机代码编译时出现报错??

我想用esp32实现iic通信中的从机,在官网找了实例代码结果编译报错。
-----------
错误信息:
sketch\sketch_aprIIC.ino.cpp.o.literal._Z5setupv+0x18): undefined reference to `TwoWire:nReceive(void (*)(int))'


sketch\sketch_aprIIC.ino.cpp.o: In function `setup()':


C:\Users\admin\Documents\Arduino\sketch_aprIIC/sketch_aprIIC.ino:22: undefined reference to `TwoWire:nReceive(void (*)(int))'


collect2.exe: error: ld returned 1 exit status


exit status 1
为开发板 ESP32 Dev Module 编译时出错。



官方代码如下


#include <Wire.h>


void setup() {
  Wire.begin(8);                // join i2c bus with address #8
  Wire.onReceive(receiveEvent); // register event
  Serial.begin(9600);           // start serial for output
}

void loop() {
  delay(100);
}

// function that executes whenever data is received from master
// this function is registered as an event, see setup()
void receiveEvent(int howMany) {
  while (1 < Wire.available()) { // loop through all but the last
    char c = Wire.read(); // receive byte as a character
    Serial.print(c);         // print the character
  }
  int x = Wire.read();    // receive byte as an integer
  Serial.println(x);         // print the integer
}
发表于 2022-5-16 13:23 | 显示全部楼层
请问您这个问题解决了吗
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 05:29 , Processed in 0.152931 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表