diff options
author | Damien George <damien.p.george@gmail.com> | 2017-01-30 18:19:29 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-30 18:19:29 +1100 |
commit | 5ec5bfb0d31c04b3d44e109dd5dca779c3a070e0 (patch) | |
tree | a0d948e471fb22561a79b1344ae0deed32d1d54e /docs/pyboard/tutorial | |
parent | 6b12934fecdf531f9199b835cff1c2dd501d149b (diff) | |
download | micropython-5ec5bfb0d31c04b3d44e109dd5dca779c3a070e0.tar.gz micropython-5ec5bfb0d31c04b3d44e109dd5dca779c3a070e0.zip |
docs/pyboard/tutorial/lcd160cr_skin: Fix typo, get_touched->get_touch.
Diffstat (limited to 'docs/pyboard/tutorial')
-rw-r--r-- | docs/pyboard/tutorial/lcd160cr_skin.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/pyboard/tutorial/lcd160cr_skin.rst b/docs/pyboard/tutorial/lcd160cr_skin.rst index f0bc34e1ee..11ebad9a6c 100644 --- a/docs/pyboard/tutorial/lcd160cr_skin.rst +++ b/docs/pyboard/tutorial/lcd160cr_skin.rst @@ -95,7 +95,7 @@ the screen to see the result. To get the location of the touch you can use the method:: - >>> lcd.get_touched() + >>> lcd.get_touch() This will return a 3-tuple, with the first entry being 0 or 1 depending on whether there is currently anything touching the screen (1 if there is), and the second and |