gpt4 book ai didi

c - 错误: expected constructor,析构函数,或 '('之前的类型转换

转载 作者:太空宇宙 更新时间:2023-11-04 01:20:32 24 4
gpt4 key购买 nike

我刚刚在 Arduino 上开发 RFID 嗅探器,但发生了一些事情,它不再工作了。

#include <SoftwareSerial.h>
#include <LiquidCrystal_I2C.h>

SoftwareSerial RDM630 = SoftwareSerial(2, 3); // RFID

LiquidCrystal_I2C lcd(0x3F, 16, 2);
SoftwareSerial ESP = SoftwareSerial(10, 11); // RX, TX
pinMode(13, INPUT);
char rfid;
String dx;
bool connected = false;
String connbuff;
int lf = 10;
int cnt = 0;
bool lcdWAV = false;

void setup() {
lcd.begin(16, 2);
lcd.init();
lcd.backlight();
lcd.setCursor(0, 0);
Serial.begin(9600);
RDM630.begin(9600);
ESP.begin(9600);
ESP.listen();
}

错误说:

Documents/Arduino/rdm630_test/src/rdm630_test.ino:27:8: error: expected constructor, destructor, or type conversion before  '(' token 
lcd.setCursor(0, 0);
^

现在只有设置例程,连这个都不起作用。我只得到错误...

最佳答案

我忘了那事了。像这样:

pinMode(13, INPUT);

需要放在

setup() {
// ...
}

关于c - 错误: expected constructor,析构函数,或 '('之前的类型转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44398966/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com