karlee theodore
Published

Voters Tube

Looking to avoid the voter lines during times of elections? Well wait no more. The voters tube lets you vote with ease and discrepancy.

BeginnerShowcase (no instructions)376
Voters Tube

Things used in this project

Story

Read more

Schematics

4c314776-1c9c-4154-9c2f-da7feb9cf771_qShEDbpwMx.jpeg

Code

Voters Tube

JavaScript
Tilting the circuit board left or right changes to color of the neopixals
light.setBrightness(20)
forever(function () {
    if (input.acceleration(Dimension.X) >= 500) {
        light.showRing(
        `blue blue blue blue blue blue blue blue blue blue`
        )
    } else if (input.acceleration(Dimension.X) <= -500) {
        light.showRing(
        `red red red red red red red red red red`
        )
    } else {
        light.showRing(
        `green green green green green green green green green green`
        )
    }
})

Credits

karlee theodore
5 projects • 0 followers
Contact

Comments

Please log in or sign up to comment.