2016-06-07 21:57:41 +00:00
|
|
|
.. currentmodule:: pyb
|
2017-10-10 14:24:44 +00:00
|
|
|
.. _pyb.LCD:
|
2016-06-07 21:57:41 +00:00
|
|
|
|
2014-10-31 22:21:37 +00:00
|
|
|
class LCD -- LCD control for the LCD touch-sensor pyskin
|
|
|
|
========================================================
|
2014-10-31 01:37:19 +00:00
|
|
|
|
|
|
|
The LCD class is used to control the LCD on the LCD touch-sensor pyskin,
|
|
|
|
LCD32MKv1.0. The LCD is a 128x32 pixel monochrome screen, part NHD-C12832A1Z.
|
|
|
|
|
|
|
|
The pyskin must be connected in either the X or Y positions, and then
|
|
|
|
an LCD object is made using::
|
|
|
|
|
|
|
|
lcd = pyb.LCD('X') # if pyskin is in the X position
|
|
|
|
lcd = pyb.LCD('Y') # if pyskin is in the Y position
|
|
|
|
|
|
|
|
Then you can use::
|
|
|
|
|
|
|
|
lcd.light(True) # turn the backlight on
|
|
|
|
lcd.write('Hello world!\n') # print text to the screen
|
|
|
|
|
|
|
|
This driver implements a double buffer for setting/getting pixels.
|
|
|
|
For example, to make a bouncing dot, try::
|
|
|
|
|
|
|
|
x = y = 0
|
|
|
|
dx = dy = 1
|
|
|
|
while True:
|
|
|
|
# update the dot's position
|
|
|
|
x += dx
|
|
|
|
y += dy
|
|
|
|
|
|
|
|
# make the dot bounce of the edges of the screen
|
|
|
|
if x <= 0 or x >= 127: dx = -dx
|
|
|
|
if y <= 0 or y >= 31: dy = -dy
|
|
|
|
|
|
|
|
lcd.fill(0) # clear the buffer
|
|
|
|
lcd.pixel(x, y, 1) # draw the dot
|
|
|
|
lcd.show() # show the buffer
|
|
|
|
pyb.delay(50) # pause for 50ms
|
|
|
|
|
|
|
|
|
|
|
|
Constructors
|
|
|
|
------------
|
|
|
|
|
2022-06-21 04:33:23 +00:00
|
|
|
.. class:: LCD(skin_position)
|
2014-10-31 01:37:19 +00:00
|
|
|
|
|
|
|
Construct an LCD object in the given skin position. ``skin_position`` can be 'X' or 'Y', and
|
|
|
|
should match the position where the LCD pyskin is plugged in.
|
|
|
|
|
|
|
|
|
|
|
|
Methods
|
|
|
|
-------
|
|
|
|
|
2016-06-08 13:21:28 +00:00
|
|
|
.. method:: LCD.command(instr_data, buf)
|
2014-10-31 01:37:19 +00:00
|
|
|
|
|
|
|
Send an arbitrary command to the LCD. Pass 0 for ``instr_data`` to send an
|
|
|
|
instruction, otherwise pass 1 to send data. ``buf`` is a buffer with the
|
|
|
|
instructions/data to send.
|
|
|
|
|
2016-06-08 13:21:28 +00:00
|
|
|
.. method:: LCD.contrast(value)
|
2014-10-31 01:37:19 +00:00
|
|
|
|
|
|
|
Set the contrast of the LCD. Valid values are between 0 and 47.
|
|
|
|
|
2016-06-08 13:21:28 +00:00
|
|
|
.. method:: LCD.fill(colour)
|
2014-10-31 01:37:19 +00:00
|
|
|
|
|
|
|
Fill the screen with the given colour (0 or 1 for white or black).
|
2019-12-04 04:02:54 +00:00
|
|
|
|
2014-10-31 01:37:19 +00:00
|
|
|
This method writes to the hidden buffer. Use ``show()`` to show the buffer.
|
|
|
|
|
2016-06-08 13:21:28 +00:00
|
|
|
.. method:: LCD.get(x, y)
|
2014-10-31 01:37:19 +00:00
|
|
|
|
|
|
|
Get the pixel at the position ``(x, y)``. Returns 0 or 1.
|
2019-12-04 04:02:54 +00:00
|
|
|
|
2014-10-31 01:37:19 +00:00
|
|
|
This method reads from the visible buffer.
|
|
|
|
|
2016-06-08 13:21:28 +00:00
|
|
|
.. method:: LCD.light(value)
|
2014-10-31 01:37:19 +00:00
|
|
|
|
|
|
|
Turn the backlight on/off. True or 1 turns it on, False or 0 turns it off.
|
|
|
|
|
2016-06-08 13:21:28 +00:00
|
|
|
.. method:: LCD.pixel(x, y, colour)
|
2014-10-31 01:37:19 +00:00
|
|
|
|
|
|
|
Set the pixel at ``(x, y)`` to the given colour (0 or 1).
|
2019-12-04 04:02:54 +00:00
|
|
|
|
2014-10-31 01:37:19 +00:00
|
|
|
This method writes to the hidden buffer. Use ``show()`` to show the buffer.
|
|
|
|
|
2016-06-08 13:21:28 +00:00
|
|
|
.. method:: LCD.show()
|
2014-10-31 01:37:19 +00:00
|
|
|
|
|
|
|
Show the hidden buffer on the screen.
|
|
|
|
|
2016-06-08 13:21:28 +00:00
|
|
|
.. method:: LCD.text(str, x, y, colour)
|
2014-10-31 01:37:19 +00:00
|
|
|
|
|
|
|
Draw the given text to the position ``(x, y)`` using the given colour (0 or 1).
|
2019-12-04 04:02:54 +00:00
|
|
|
|
2014-10-31 01:37:19 +00:00
|
|
|
This method writes to the hidden buffer. Use ``show()`` to show the buffer.
|
|
|
|
|
2016-06-08 13:21:28 +00:00
|
|
|
.. method:: LCD.write(str)
|
2014-10-31 01:37:19 +00:00
|
|
|
|
|
|
|
Write the string ``str`` to the screen. It will appear immediately.
|