diff options
author | Damien George <damien.p.george@gmail.com> | 2017-02-24 17:22:57 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-02-24 17:22:57 +1100 |
commit | 8400d0461d3bb444f10242c82c5c44d4d7cbef16 (patch) | |
tree | 1b3f31b702791ce1bac37c7b754fa14f6e2d9a33 /drivers | |
parent | f5ee4d95a9ec199325bf7c3f37288ad11ca650cc (diff) | |
download | micropython-8400d0461d3bb444f10242c82c5c44d4d7cbef16.tar.gz micropython-8400d0461d3bb444f10242c82c5c44d4d7cbef16.zip |
drivers/display/lcd160cr: Fix bug with save_to_flash method.
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/display/lcd160cr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/display/lcd160cr.py b/drivers/display/lcd160cr.py index c17a1f189d..d63dc39759 100644 --- a/drivers/display/lcd160cr.py +++ b/drivers/display/lcd160cr.py @@ -235,7 +235,7 @@ class LCD160CR: self._fcmd2('<BBB', 0x19, value) def save_to_flash(self): - self._fcmd2('<BBB', 0x66, 'n') + self._send(b'\x02fn') #### PIXEL ACCESS #### |