├── Makefile ├── README.md ├── docs ├── ESP32_LCD_I2S_DEMO.MOV ├── ESP32_LCD_I2S_DEMO_DB.MOV ├── ESP32_LCD_proto.jpg ├── clk_hs_timing.png ├── example_lcd_timing.png ├── parallel_i2s_transmit_order.png └── vs_hs_fr_clk.png ├── main ├── app_main.c ├── cct.c ├── cct.h ├── common.h ├── component.mk ├── config.h ├── font_6x8.h ├── font_bignum.h ├── gfx3d.c ├── gfx3d.h ├── hal │ ├── component.mk │ ├── esp32-hal-gpio.c │ ├── esp32-hal-gpio.h │ ├── esp32-hal-i2c.c │ ├── esp32-hal-i2c.h │ ├── esp32-hal-log.h │ ├── esp32-hal-matrix.c │ ├── esp32-hal-matrix.h │ ├── esp32-hal-spi.c │ ├── esp32-hal-spi.h │ ├── esp32-hal-timer.c │ ├── esp32-hal-timer.h │ ├── esp32-hal-uart.c │ ├── esp32-hal-uart.h │ ├── esp32-hal.h │ ├── myi2c.c │ └── myi2c.h ├── i2s_parallel.c ├── i2s_parallel.h ├── lenabmp.h └── rectbmp.h ├── sdkconfig └── sdkconfig.old /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/README.md -------------------------------------------------------------------------------- /docs/ESP32_LCD_I2S_DEMO.MOV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/docs/ESP32_LCD_I2S_DEMO.MOV -------------------------------------------------------------------------------- /docs/ESP32_LCD_I2S_DEMO_DB.MOV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/docs/ESP32_LCD_I2S_DEMO_DB.MOV -------------------------------------------------------------------------------- /docs/ESP32_LCD_proto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/docs/ESP32_LCD_proto.jpg -------------------------------------------------------------------------------- /docs/clk_hs_timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/docs/clk_hs_timing.png -------------------------------------------------------------------------------- /docs/example_lcd_timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/docs/example_lcd_timing.png -------------------------------------------------------------------------------- /docs/parallel_i2s_transmit_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/docs/parallel_i2s_transmit_order.png -------------------------------------------------------------------------------- /docs/vs_hs_fr_clk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/docs/vs_hs_fr_clk.png -------------------------------------------------------------------------------- /main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/app_main.c -------------------------------------------------------------------------------- /main/cct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/cct.c -------------------------------------------------------------------------------- /main/cct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/cct.h -------------------------------------------------------------------------------- /main/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/common.h -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/config.h -------------------------------------------------------------------------------- /main/font_6x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/font_6x8.h -------------------------------------------------------------------------------- /main/font_bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/font_bignum.h -------------------------------------------------------------------------------- /main/gfx3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/gfx3d.c -------------------------------------------------------------------------------- /main/gfx3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/gfx3d.h -------------------------------------------------------------------------------- /main/hal/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/component.mk -------------------------------------------------------------------------------- /main/hal/esp32-hal-gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal-gpio.c -------------------------------------------------------------------------------- /main/hal/esp32-hal-gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal-gpio.h -------------------------------------------------------------------------------- /main/hal/esp32-hal-i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal-i2c.c -------------------------------------------------------------------------------- /main/hal/esp32-hal-i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal-i2c.h -------------------------------------------------------------------------------- /main/hal/esp32-hal-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal-log.h -------------------------------------------------------------------------------- /main/hal/esp32-hal-matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal-matrix.c -------------------------------------------------------------------------------- /main/hal/esp32-hal-matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal-matrix.h -------------------------------------------------------------------------------- /main/hal/esp32-hal-spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal-spi.c -------------------------------------------------------------------------------- /main/hal/esp32-hal-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal-spi.h -------------------------------------------------------------------------------- /main/hal/esp32-hal-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal-timer.c -------------------------------------------------------------------------------- /main/hal/esp32-hal-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal-timer.h -------------------------------------------------------------------------------- /main/hal/esp32-hal-uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal-uart.c -------------------------------------------------------------------------------- /main/hal/esp32-hal-uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal-uart.h -------------------------------------------------------------------------------- /main/hal/esp32-hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/esp32-hal.h -------------------------------------------------------------------------------- /main/hal/myi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/myi2c.c -------------------------------------------------------------------------------- /main/hal/myi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/hal/myi2c.h -------------------------------------------------------------------------------- /main/i2s_parallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/i2s_parallel.c -------------------------------------------------------------------------------- /main/i2s_parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/i2s_parallel.h -------------------------------------------------------------------------------- /main/lenabmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/lenabmp.h -------------------------------------------------------------------------------- /main/rectbmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/main/rectbmp.h -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/sdkconfig -------------------------------------------------------------------------------- /sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/har-in-air/ESP32-LCD-I2S/HEAD/sdkconfig.old --------------------------------------------------------------------------------