1- :mod: `framebuf ` --- Frame buffer manipulation
1+ :mod: `framebuf ` --- frame buffer manipulation
22=============================================
33
44.. include :: ../templates/unsupported_in_circuitpython.inc
@@ -30,7 +30,7 @@ For example::
3030Constructors
3131------------
3232
33- .. class :: FrameBuffer(buffer, width, height, format, stride=width)
33+ .. class :: FrameBuffer(buffer, width, height, format, stride=width, / )
3434
3535 Construct a FrameBuffer object. The parameters are:
3636
@@ -132,7 +132,7 @@ Constants
132132
133133 Monochrome (1-bit) color format
134134 This defines a mapping where the bits in a byte are horizontally mapped.
135- Each byte occupies 8 horizontal pixels with bit 0 being the leftmost.
135+ Each byte occupies 8 horizontal pixels with bit 7 being the leftmost.
136136 Subsequent bytes appear at successive horizontal locations until the
137137 rightmost edge is reached. Further bytes are rendered on the next row, one
138138 pixel lower.
@@ -141,7 +141,7 @@ Constants
141141
142142 Monochrome (1-bit) color format
143143 This defines a mapping where the bits in a byte are horizontally mapped.
144- Each byte occupies 8 horizontal pixels with bit 7 being the leftmost.
144+ Each byte occupies 8 horizontal pixels with bit 0 being the leftmost.
145145 Subsequent bytes appear at successive horizontal locations until the
146146 rightmost edge is reached. Further bytes are rendered on the next row, one
147147 pixel lower.
0 commit comments