diff options
author | Damien George <damien.p.george@gmail.com> | 2017-02-17 16:57:22 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-02-17 16:57:22 +1100 |
commit | d80df91ef2818ccef3185c9ecffcc8c396cc7d9f (patch) | |
tree | ea49a015289779f5b83bf0e3e75cea6f5a1f1f3b | |
parent | 8f3e07f17d545d78fa031c1eba8e907a7cd08808 (diff) | |
download | micropython-d80df91ef2818ccef3185c9ecffcc8c396cc7d9f.tar.gz micropython-d80df91ef2818ccef3185c9ecffcc8c396cc7d9f.zip |
docs/library/lcd160cr: Mention the valid values for set_power() method.
-rw-r--r-- | docs/library/lcd160cr.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/library/lcd160cr.rst b/docs/library/lcd160cr.rst index 39f492fc41..56af097a17 100644 --- a/docs/library/lcd160cr.rst +++ b/docs/library/lcd160cr.rst @@ -103,7 +103,8 @@ Setup commands .. method:: LCD160CR.set_power(on) - Turn the display on or off, depending on the given value. + Turn the display on or off, depending on the given value of `on`: 0 or `False` + will turn the display off, and 1 or `True` will turn it on. .. method:: LCD160CR.set_orient(orient) |