私はArduinoのようなWeMos D1とTFT LCDシールドを使用しています。私はgraphictestのようなサンプルプログラムを実行したい場合は、プログラムをコンパイルしないと、それは私にこれらのエラーを与える:ここでWemos D1とTFT LCDシールド
Adafruit_TFTLCD tft(LCD_CS, LCD_CD, LCD_WR, LCD_RD, LCD_RESET);
A3' was not declared in this scope
A2' was not declared in this scope
A1' was not declared in this scope
は、ピンを定義するためのコードです:
#define LCD_CS A3 // Chip Select goes to Analog 3
#define LCD_CD A2 // Command/Data goes to Analog 2
#define LCD_WR A1 // LCD Write goes to Analog 1
#define LCD_RD A0 // LCD Read goes to Analog 0
'A3'などのための定義はhttps://github.com/arduino/Arduino/blob/master/hardware/arduino/avr/variants/standard/pins_arduino.hであるので、あなた最初に#includeを実行するか、3,2,1などのピン番号を直接指定する必要があります。 –