Hi -
I'm experimenting with my new m5paper, and had the idea to create a qr code so my friend will be able to use my wifi while I'm on vacation. I used uiflow/blockly to create the following code:
from m5stack import *
from m5ui import *
from uiflow import *
setScreenColor(15)
label0 = M5TextBox(134, 414, "Text", lcd.FONT_DejaVu24, 0, rotate=0)
lcd.clear()
label0.setFont(lcd.FONT_DejaVu40)
label0.setText('Wifi Info')
lcd.qrcode('text text text', x=150, y=400, width=220, version=6)
lcd.show()
And I'm getting a ghost qr code, for lack of a better way to describe it. I moved the qr code once, and it only started happening following that. If anyone can help, I would appreciate it...