Tell the firmware to start/stop animation. Scrolls the currently saved grid vertically down.
(dev)
| 73 | |
| 74 | |
| 75 | def get_animate(dev): |
| 76 | """Tell the firmware to start/stop animation. |
| 77 | Scrolls the currently saved grid vertically down.""" |
| 78 | res = send_command(dev, CommandVals.Animate, with_response=True) |
| 79 | return bool(res[0]) |
| 80 | |
| 81 | |
| 82 | def image_bl(dev, image_file): |
no test coverage detected