Arduino显示问题

时间:2019-07-02 15:00:31

标签: arduino

当我运行代码时,Arduino IDE给我错误:

  

退出状态1

     

在此范围内未声明“正”。

为什么会这样,我该如何解决?

这是我的完整代码:https://pastebin.com/yvDEZWd3

这是我遇到问题的代码部分:

LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); // 0x27 is the i2c address of the LCM1602 IIC v1 module (might differ)

1 个答案:

答案 0 :(得分:0)

您尚未定义/声明POSITIVE变量。应该是什么好像您要为其定义:

#define POSITIVE 3 

将“ 3”替换为应有的值。