Working loader

This commit is contained in:
2026-03-21 16:34:44 -05:00
parent 08997c7109
commit 80097b7231
5 changed files with 233 additions and 85 deletions

View File

@@ -1,6 +1,10 @@
from pybricks.hubs import PrimeHub
from pybricks.parameters import Color
from pybricks.tools import wait
import micropython
hub = PrimeHub()
hub.light.on(Color.GREEN)
wait(1000)
hub.light.on(Color.RED)
wait(100)
print("Hello, World!")
print("This is the spike prime hub.")
print(micropython.mem_info())