我对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"