austin menard
Published

Starry Night Light

A night light, made out of a plastic cup with a switch, and a potentiometer.

BeginnerFull instructions provided2 hours194
Starry Night Light

Things used in this project

Hardware components

Circuit Playground Express
Adafruit Circuit Playground Express
×1
Toggle Switch, (On)-Off-(On)
Toggle Switch, (On)-Off-(On)
×1
Rotary potentiometer (generic)
Rotary potentiometer (generic)
×1
Alligator Clips
Alligator Clips
×1
Battery, 3.7 V
Battery, 3.7 V
×1

Story

Read more

Code

Code

Python
let value = 0
pins.A5.setPull(PinPullMode.PullUp)
forever(function () {
   if (!(pins.A5.digitalRead())) {
       light.setAll(0xffffff)
   } else {
       light.clear()
   }
})
forever(function () {
   value = pins.A1.analogRead()
   light.graph(value, 1023)
   console.logValue("value", value)
})
 

https://learn.adafruit.com/make-it-switch/code-your-micro

Python
No preview (download only).

https://learn.adafruit.com/make-it-change-potentiometers

Python
No preview (download only).

Credits

austin menard
4 projects • 0 followers
Contact

Comments

Please log in or sign up to comment.