1

我对 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;
}
4

5 回答 5

1

在终端类型中:

pio lib install "LiquidCrystal"
于 2019-06-22T13:31:42.203 回答
0

对于 platformio,我是这样工作的(我在 Win10 上):我所有的项目都在“我的文档”中。通用库位于“我的文档/库”中。特定的位于 pio 项目的“lib”文件夹中。

在 platformio.ini 我有例如以下内容:

[env:lolin32]
;platform = espressif32
platform = https://github.com/platformio/platform-espressif32.git#feature/stage
board = lolin32
framework = arduino
lib_extra_dirs = ..\libraries
lib_deps = 
  https://urltotherepo.git

对于平台,您可以注释掉正确的平台(阶段或发布,但对于 Arduino ESP32,“发布”相当……不稳定)

将正确的路径放在 lib_extra_dirs 中,并尽量避免将所有库隐藏在“Program Files”文件夹中,因为如果需要的话,在那里更改某些内容非常不方便。

于 2017-11-06T15:36:18.357 回答
0

我认为您需要下载LiquidCrystal包或使用 PlatformIO CLI 安装它。检查这个: http: //platformio.org/lib/show/887/LiquidCrystal/installation

请将解压缩的 LiquidCrystal 文件夹复制到您的项目/lib文件夹中,然后尝试再次构建。

ps:私人/第三方库应该放在/lib文件夹中。

于 2018-01-30T23:53:07.887 回答
0

我也遇到了这个问题。我相信最好的解决方案是将条目添加到platformio.ini项目和电路板的文件中。这样您就不需要将库代码添加到您自己的源代码树中,并且该解决方案对“在我的计算机上工作”具有弹性,因为该项目不依赖于您的文件系统中特定位置的库。请注意,我在此处针对特定版本以实现最大的可预测性,但您不必这样做。

[env:nanoatmega328]
platform = atmelavr
board = nanoatmega328
framework = arduino
lib_deps = LiquidCrystal@1.5.0 #<--important line
于 2020-08-28T05:57:04.487 回答
0

我必须手动将液晶库添加到 PlatformIO 并通过以下步骤为我解决了这个问题:

  1. 转到 PIO 主页
  2. 单击重新加载主页按钮下方的“库”
  3. 通过arduino搜索并选择液晶
  4. 点击添加到项目
于 2021-11-20T01:37:13.463 回答