let UV = 0 | |
basic.forever(() => { | |
UV = input.lightLevel() | |
if (UV < 190) { | |
basic.showIcon(IconNames.Yes) | |
basic.pause(1000) | |
basic.showIcon(IconNames.Happy) | |
basic.pause(1000) | |
} else if (UV >= 190) { | |
basic.showLeds(` | |
# . . . # | |
. # . # . | |
. . # . . | |
. # . # . | |
# . . . # | |
`) | |
basic.pause(1000) | |
basic.showIcon(IconNames.Sad) | |
basic.pause(1000) | |
} | |
}) |
SpaceApps is a NASA incubator innovation program.