Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 331 Bytes

File metadata and controls

25 lines (19 loc) · 331 Bytes

Native python

@diffs false

Step 1 @fullscreen

Tutorials can be written with code in Python.

basic.show_string("Hello")

Step 2

Show some LEDs

basic.forever(function() {
    basic.show_leds(`
        . # . # .
        # # # # #
        # # # # #
        . # # # .
        . . # . .`);
})