Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add led array #53

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Conversation

KostyaCholak
Copy link

This pull request adds led array

https://github.com/JPro173/BOOLR/tree/add-led-array
Screenshot 2020-09-05 at 22 46 25

Chip operates on horizontal pixel lines (8 pixels in line), so we use 8 data pins and 3 address line pins instead of 64 data pins

Selecting the line:
Top line at the address 0, (ADDR0 = 0, ADDR1 = 0, ADDR2 = 0)
Second top line at the address 1, (ADDR0 = 1, ADDR1 = 0, ADDR2 = 0)
Bottom top line at the address 7, (ADDR0 = 1, ADDR1 = 1, ADDR2 = 1)

Chip has buffer memory and display memory, so you can write multiple lines separately and then push data to display

CE - Chip Enable, when off no writes possible and pixel won't light up, when on - operate normally (may be redundant)
WE - Write Enable, write data to buffer
ADDR0,1,2 - Address Bits, Active line address bits
PUSH - Push data from buffer memory to display memory
0-7 - Data pins

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant