作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我正在尝试将 LiquidCrystal 库重写为 MyLiquidCrystal,但到目前为止我遇到了这个错误:cpp:25: 未定义对“MyLiquidCrystal 的 vtable”的引用。在网上查到库需要有析构函数才导致这个错误,但是官方库没有显式析构函数。我该怎么做才能解决这个错误?这是我的 cpp 代码:https://pastebin.com/q8Ew8mUp这是我的 h 代码:https://pastebin.com/Gq23Pixq这是我在 Arduino 中运行的简单代码:
#include <MyLiquidCrystal.h>
MyLiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2);
void setup()
{
lcd.begin(16,1);
lcd.print("hello, world!");
}
void loop() {}
问题 在使用 LiquidCrystal 库(当然还有 shield)时,我无法让我的 Arduino Uno 的 LCD screen 库打印到我的 Ethernet。 代码 #include #
这个问题在这里已经有了答案: Undefined reference to vtable (21 个回答) 关闭 3 年前。 我正在尝试将 LiquidCrystal 库重写为 MyLiquidCr
我对 Atom/PlatformIO 相当陌生,并尝试使用它与 Arduino 一起开发作为 Arduino IDE 的替代品。 ~规范~ base code used: Arduino ESP sa
我是一名优秀的程序员,十分优秀!