Processing Forum
I got 3 questions of which I'm hoping someone can explain:Each Graphic Block built by 4 8x8 dots units
Sequence of data is shown below.
Graphic data mapping
Graphic Pixels: D0,D1,D2,...D255, four Pixel is represented by 1 Byte.
Byte 1 = D0..D3
Byte 2 = D4..D7
Byte 3 = D8..D11
...
Byte 63 = D252..256
Structure of each Data : Each Pixel composite by 2 bit. MSB is the most Left Bit
e.g. the first dot is RED ,the second dot is GREEN, the third dot is yellow and the forth dot is black.
Data = 10 01 11 00
| | | |
| | | -Black
| | ----- Yellow
| --------- GREEN
------------ RED
I found an allegedly working example coded in Delphi and tried to adopt it to Processing, but this doesn't seem to result in a correct checksum: