How do I clear the screen completely? Can you add a `clear` or `reset` method? Eg. this shows `1OOL, 2OOL` etc.. ```python >>> t.show('COOL') >>> import utime >>> for x in range(1000): ... t.show(str(x)) ... utime.sleep(0.4) ``` `t.show('')` doesn't seem to work.