brainpad-board / brainpad-pulse

BrainPad Pulse
https://makecode.brainpad.com/
Other
0 stars 1 forks source link

Digital Read tutorial is missing Display block #64

Open greg-norris opened 1 year ago

greg-norris commented 1 year ago

digital_read.md is missing display block inside the tutorial.

Should be able to fix by adding ghost section at the top like we did in Array.md, but it doesn't seem to work when built. Maybe just ghosting the display.showImage() only?

pins.P0.onEvent(PinEvent.Fall, function () {
    display.showImage(images.stop)
})
pins.P0.onEvent(PinEvent.Rise, function () {
    display.showImage(images.go)
})