Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 1.15 KB

README.md

File metadata and controls

43 lines (26 loc) · 1.15 KB

Code collection for AZ-Touch-Feather

A collection of different demo sources for Zihatec AZ-Touch Feather wall mount touchscreen kit

My image

Used pins

My image

  • Please note: For HuzzahESP8266 the Beeper is on 5 and the TFT_LED pin is not in use.

Migration of AZ-Touch ESP projects

Existing projects for AZ-Touch ESP or MOD for ESP32 or ESP8266 can be migrated to AZ-Touch Feather and ESP32 or ESP8266 based Feather boards very simple.

For ESP32 please use the following pin definitions:

#define TFT_CS   33
#define TFT_DC   15
#define TFT_LED  13
#define TOUCH_CS 32
#define TOUCH_IRQ 14 
#define BEEPER 27

For ESP8266 please use the following pin definitions:

#define TFT_CS   15
#define TFT_DC   0
#define TOUCH_CS 16
#define TOUCH_IRQ 2 
#define BEEPER 5

Remove the TFT_LED control from your project for ESP8266. (The TFT backlight will be always on).