# main.py 
# # run on MicroPython on RP2040 MCU with 4x LED 8x8 matrix

import glow

# Always run
# glow.main()

# If connected via REPL, no auto start, execute glow.main() manually.
# Otherwise, glow.main() runs automatically when the board start

if __name__ == "__main__":
    glow.main()  # type: ignore
