forked from FriedlTheFox/LedMatrixGames
-
Notifications
You must be signed in to change notification settings - Fork 0
FAQs
Matthias edited this page Aug 3, 2016
·
4 revisions
Open questions are not welcome! 🌱
I'll measure this later...
You must send the right data to the MY9221 chip and latch this. It means you will transmit the data from the shift register to the PWM generator. With this function you activate the data and the LEDs switching on or something like this.
This is the right sequence:
- sending the first 208 bit (16 bit command and 12x16=192 bit data)
- 1st MY9221 takes the data
- 2nd MY9221 takes nothing
- sending the second 208 bit (FIFO behavior)
- 1st MY9221 takes the 2nd sended data
- 2nd MY9221 takes the 1st sended data
No, this is not possible. Because the MY9221 chips need everytime a full data transmission. You have to send the 16 bit command and twelve times the 16 bit data. So you have to update every time the whole chips and matrix.
Thank you for your help.