Update CommandSet.MD

This commit is contained in:
Frater 2020-10-12 00:06:24 +02:00
commit eab645ec35

View file

@ -26,8 +26,13 @@ according to the CP's drivers each command bloc was followed by an `usleep(1000)
|0x1B 0x53 nn | `ESC` S _n_ | 3 | | | Save Current Screen to Page nn | |0x1B 0x53 nn | `ESC` S _n_ | 3 | | | Save Current Screen to Page nn |
**Notes** **Notes**
(1) : picture are 128x64 pixels, encoded 1 pixel per bits
(2) : All led were "bicolor" and were addressed as 2 pins out from the controler. 1. picture are 128x64 pixels, encoded 1 pixel per bits
A byte is displayed not as a 8 pixels Horizontal line (like on a conventionnal bitmap field), but as a 8 pixel vertical column...
This can be usefull to draw text, but painfull for graphics encoding.
This means that the byte SCREEN[0] display pixels 0,0 to 0,8 and the byte SCREEN[1] refert to pixels 1,0 to 1,8...
2. All led were "bicolor" and were addressed as 2 pins out from the controler.