gpt4 book ai didi

build - PlatformIO 致命构建错误 : LiquidCrystal. h "No such file or directory"

转载 作者:行者123 更新时间:2023-12-02 10:46:16 25 4
gpt4 key购买 nike

我对 Atom/PlatformIO 相当陌生,并尝试使用它与 Arduino 一起开发作为 Arduino IDE 的替代品。

~规范~

base code used: Arduino ESP sample code "WifiBlueToothSwitch.ino"
Board: ESP-WROOM-32
Additional Components: 1602A (2x16) LCD

在尝试使用 LCD 屏幕之前,我已经通过 PlatformIO 在 ESP 模块上成功运行了其他示例代码,但是当我尝试包含 LiquidCrystal.h 库时,它给了我一个构建错误:
src\main.cpp:22:27: fatal error: LiquidCrystal.h: No such file or directory
compilation terminated.
*** [.pioenvs\esp32dev\src\main.o] Error 1
[ERROR] Took 3.34 seconds

到目前为止,在我搜索过的有关此问题的几个站点中,大多数都指向缺少添加“wire.h”头文件,但是即使将其包含到程序中,它仍然给我这个错误。

我的包括如下:
#include <Arduino.h>
#include <WiFi.h>
#include <Wire.h>
#include <LiquidCrystal.h>

所以我不完全确定为什么会出现这个问题。
我该如何解决这个问题?

编辑1:

刚才我遇到了另一个站点,该站点建议尝试通过控制台更新 PlatformIO,但这无济于事。一切都被标记为“最新”。
Documents\PlatformIO\Projects\171031-143050-esp32dev> platformio update
Updating tool-scons @ 3.20501.2 [Up-to-date]
Updating tool-unity @ 1.20302.1 [Up-to-date]
Updating pysite-pioplus @ 0.4.2 [Up-to-date]
Updating contrib-piohome @ 0.3.1 [Up-to-date]
Updating tool-pioplus @ 0.10.11 [Up-to-date]

Platform Manager
================
Platform Espressif 32
--------
Updating espressif32 @ 0.10.0 [Up-to-date]

Updating tool-esptoolpy @ 1.20000.0 [Up-to-date]
Updating toolchain-xtensa32 @ 1.50200.0 [Up-to-date]
Updating framework-arduinoespressif32 @ 1.2.0 [Up-to-date]
Updating tool-espotapy @ 1.0.0 [Up-to-date]


Library Manager
===============
Documents\PlatformIO\Projects\171031-143050-esp32dev>

编辑2:

我已经通过 Arduino IDE 编译并运行了这段代码,并且可以确认它可以工作,所以问题似乎出在 PlatformIO IDE ...

编辑3:

在遵循 BMelis 的建议后,我查看了 PlatformIO.ini 文件,并在其中添加了以下行:
lib_extra_dirs = C:\Program Files (x86)\Arduino\hardware\espressif\esp32\libraries

这修复了 LiquidCrystal.h 的初始错误,但是这也在构建过程中产生了以下依赖错误:
[11/06/17 08:52:58] Processing esp32dev (platform: espressif32; lib_extra_dirs: C:\Program Files (x86)\Arduino\hardware\espressif\esp32\libraries; board: esp32dev; framework: arduino)

Verbose mode can be enabled via `-v, --verbose` option
Collected 49 compatible libraries
Looking for dependencies...
Library Dependency Graph
|-- <WiFi> v1.0

|-- <Wire> v1.0
|-- <LiquidCrystal> v1.0.7
Compiling .pioenvs\esp32dev\lib\WiFi\WiFiAP.o
Compiling .pioenvs\esp32dev\lib\WiFi\WiFiGeneric.o
Compiling .pioenvs\esp32dev\lib\WiFi\WiFiMulti.o
Compiling .pioenvs\esp32dev\lib\WiFi\WiFiSTA.o

****ERROR OCCURRED****
C:\Program Files (x86)\Arduino\hardware\espressif\esp32\libraries\WiFi\src\WiFiAP.cpp:40:37: fatal error: apps/dhcpserver_options.h: No such file or directory
compilation terminated.
*** [.pioenvs\esp32dev\lib\WiFi\WiFiAP.o] Error 1
[ERROR] Took 8.13 seconds

我尝试通过在 ini 文件中添加第二个 lib_extra_dirs 命令来添加它提到的目录:
lib_extra_dirs = C:\Program Files (x86)\Arduino\hardware\espressif\esp32\tools\sdk\include\lwip\apps

然而,这并没有解决问题。我现在不知道该怎么办...

完整代码:
#include <Arduino.h>
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at

// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Sketch shows how to switch between WiFi and BlueTooth or use both
// Button is attached between GPIO 0 and GND and modes are switched with each press

#include <WiFi.h>
#include <Wire.h>
#include <LiquidCrystal.h>
#define STA_SSID "HIDDEN FOR SECURITY"
#define STA_PASS "HIDDEN FOR SECURITY"
#define AP_SSID "esp32 @ my desk"
#define LED_PIN 5

//LCD variables on analog inputs, but used as digital I/O
//lcd_gnd = gnd
//lcd_vcc = +5v
//lcd_v0 = +5v & pot
const int lcd_rs = 27;
//lcd_rw = gnd
const int lcd_e = 14;
//lcd_d0 = n/a
//lcd_d1 = n/a
//lcd_d2 = n/a
//lcd_d3 = n/a
const int lcd_d4 = 32;
const int lcd_d5 = 33;
const int lcd_d6 = 25;
const int lcd_d7 = 26;
//lcd_bl1 = +5v
//lcd_bl2 = gnd
LiquidCrystal lcd(lcd_rs, lcd_e, lcd_d4, lcd_d5, lcd_d6, lcd_d7);

enum { STEP_BTON, STEP_BTOFF, STEP_STA, STEP_AP, STEP_AP_STA, STEP_OFF, STEP_BT_STA, STEP_END };

void onButton(){
static uint32_t step = STEP_BTON;
switch(step){
case STEP_BTON://BT Only
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Starting BT");
btStart();
break;
case STEP_BTOFF://All Off
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Stopping BT");
btStop();
break;
case STEP_STA://STA Only
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Starting STA");
WiFi.begin(STA_SSID, STA_PASS);
break;
case STEP_AP://AP Only
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Stopping STA");
WiFi.mode(WIFI_AP);

lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Starting AP");
WiFi.softAP(AP_SSID);
break;
case STEP_AP_STA://AP+STA
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Starting STA");
WiFi.begin(STA_SSID, STA_PASS);
break;
case STEP_OFF://All Off
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Stopping WiFi");
WiFi.mode(WIFI_OFF);
break;
case STEP_BT_STA://BT+STA
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Starting STA+BT");
WiFi.begin(STA_SSID, STA_PASS);
btStart();
break;
case STEP_END://All Off
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Stopping WiFi+BT");
WiFi.mode(WIFI_OFF);
btStop();
break;
default:
break;
}
if(step == STEP_END){
step = STEP_BTON;
} else {
step++;
}
//little debounce
delay(100);
}

void WiFiEvent(WiFiEvent_t event){
switch(event) {
case SYSTEM_EVENT_AP_START:
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("AP Started");
Serial.print("AP Started");
WiFi.softAPsetHostname(AP_SSID);
break;
case SYSTEM_EVENT_AP_STOP:
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("AP Stopped");
Serial.print("AP Stopped");
break;
case SYSTEM_EVENT_STA_START:
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("STA Started");
Serial.print("STA Started");
WiFi.setHostname(AP_SSID);
break;
case SYSTEM_EVENT_STA_CONNECTED:
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("STA Connected");
Serial.print("STA Connected");
WiFi.enableIpV6();
break;
case SYSTEM_EVENT_AP_STA_GOT_IP6:
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("STA IPv6: ");
Serial.print("STA IPv6: ");
Serial.println(WiFi.localIPv6());
break;
case SYSTEM_EVENT_STA_GOT_IP:
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("STA IPv4: ");
Serial.print("STA IPv4: ");
lcd.setCursor(0,1);
lcd.print(WiFi.localIP());
Serial.print(WiFi.localIP());
break;
case SYSTEM_EVENT_STA_DISCONNECTED:
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("STA Disconnected");
Serial.print("STA Disconnected");
break;
case SYSTEM_EVENT_STA_STOP:
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("STA Stopped");
Serial.print("STA Stopped");
break;
default:
break;
}
}

void setup() {
lcd.begin(16, 2); //tells arduino that the LCD is a 16x2 size LCD
lcd.clear(); //clear any previous text
lcd.setCursor(0, 0); // set cursor to column 0 of row 0 (first row, first block)

pinMode(LED_PIN, OUTPUT);
digitalWrite(LED_PIN, LOW); // LED off
Serial.begin(115200);
pinMode(0, INPUT_PULLUP);
WiFi.onEvent(WiFiEvent);
Serial.print("ESP32 SDK: ");
Serial.println(ESP.getSdkVersion());
Serial.println("Press the button to select the next mode");
lcd.setCursor(0, 0);
lcd.println("Press mode btn");
}

void loop() {
digitalWrite(LED_PIN, HIGH); // Turn on LED
static uint8_t lastPinState = 1;
uint8_t pinState = digitalRead(0);
if(!pinState && lastPinState){
onButton();
}
lastPinState = pinState;
}

最佳答案

在终端类型中:

pio lib install "LiquidCrystal"

关于build - PlatformIO 致命构建错误 : LiquidCrystal. h "No such file or directory",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47029909/

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