#helloWorld.py # MicroPython source for ArduPy # Source: https://rk.edu.pl/en/scripting-lcd-on-wio-terminal-with-ardupy/ # save this code as main.py before flashing it to the WioTerminal from machine import LCD lcd = LCD() # Initialize LCD and turn the backlight lcd.fillScreen(lcd.color.BLACK) # Fill the LCD screen with color black lcd.setTextSize(2) lcd.setTextColor(lcd.color.WHITE) lcd.drawString("Hello World!", 0, 0) /helloWorld.py