Raymond Boysel
Published

Microcontroller Jack-o-Lantern

Using a microcontroller to emulate a flickering candle with a jack-o-lantern cardboard cutout.

BeginnerFull instructions provided203
Microcontroller Jack-o-Lantern

Things used in this project

Hardware components

Circuit Playground Express
Adafruit Circuit Playground Express
×1
Rotary potentiometer (generic)
Rotary potentiometer (generic)
×1
Toggle Switch, Toggle
Toggle Switch, Toggle
×1

Software apps and online services

MakeCode
Microsoft MakeCode

Story

Read more

Code

Candle Code

JavaScript
Used Tutorial for Assistance: https://learn.adafruit.com/paper-craft-crystal-gem-lantern/makecode
Fine tuned and edited code from tutorial as needed.
pins.A4.setPull(PinPullMode.PullUp)
pins.A1.analogWrite(200)
forever(function () {
    if (!(pins.A4.digitalRead())) {
        light.setPixelColor(Math.randomRange(0, 10), light.hsv(Math.randomRange(5, 40), 255, Math.randomRange(100, 255)))
        pause(Math.randomRange(0, 50))
        light.setBrightness(pins.A1.analogRead())
    } else {
        light.clear()
    }
})

Credits

Raymond Boysel
4 projects • 0 followers
Contact

Comments

Please log in or sign up to comment.