prog8/examples/test.p8

10 lines
140 B
Plaintext
Raw Normal View History

2023-03-22 21:00:21 +00:00
%import textio
main {
sub start() {
sys.set_leds_brightness(255, 255)
sys.wait(120)
sys.reset_system()
2023-03-18 23:24:05 +00:00
}
}