Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request adds led array
https://github.com/JPro173/BOOLR/tree/add-led-array
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