Search found 4 matches

by codetastic
Sun Mar 24, 2019 10:32 pm
Forum: Showcase
Topic: I2S-parallel example: Drive a 64x32 display
Replies: 61
Views: 280492

Re: I2S-parallel example: Drive a 64x32 display

The link you quoted is to a commit in my project code repository, so you're close. This is the full project code: https://github.com/pixelmatix/SmartMatrix/tree/teensylc Hi EC, A silly question from me.... But in order to use I2S 8bit parallel mode successfully, one needs to use an external latch /...
by codetastic
Tue Oct 23, 2018 7:11 am
Forum: Showcase
Topic: I2S-parallel example: Drive a 64x32 display
Replies: 61
Views: 280492

Re: I2S-parallel example: Drive a 64x32 display

For those that might be interested... I have turned this experimental code into an Arduino Adafruit_GFX compatible library, to allow for simple graphics and text using DMA. I have tested this with a 64x32 Matrix.

https://github.com/mrfaptastic/ESP32-RG ... el-I2S-DMA
by codetastic
Mon Oct 22, 2018 9:40 am
Forum: Showcase
Topic: I2S-parallel example: Drive a 64x32 display
Replies: 61
Views: 280492

Re: I2S-parallel example: Drive a 64x32 display

Thank you for that. However, what I want to understand is how I can get this to work in a simpler example, such as the original I2S Parallel DMA example? https://github.com/pixelmatix/esp32_I2sParallelDmaLedMatrix If your commit as what are the difference, it seems on face value all that needs to ch...
by codetastic
Sat Oct 13, 2018 1:27 am
Forum: Showcase
Topic: I2S-parallel example: Drive a 64x32 display
Replies: 61
Views: 280492

Re: I2S-parallel example: Drive a 64x32 display

I got I2S Parallel working in 8-bit mode so the SmartMatrix Library can refresh the panel with I2S data stored in uint8_t instead of uint16_t, cutting the RAM needed to hold the refresh buffer in half. I made the modifications inside SmartMatrix Library and not Sprite_TM's I2S Parallel example, but...