Projects/LED-Pad

From Hackerspace Amersfoort
< Projects
Revision as of 11:54, 4 August 2018 by Polyfloyd (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


LED-Pad Assembled.jpg
Project LED-Pad
Name LED-Pad
Start 2018/07/15
End
Contact polyfloyd
Website https://github.com/polyfloyd/led-pad
Information A simple remote control intended to be used with single color

LED-strips

Status Beta


The LED-Pad is a simple remote control intended to be used with single color LED-strips.

The color and brightness can be controlled via an analog joystick and a user interface on a 160x80 OLED display. The display shows a HSV color spectrum with both gradients to dark and light colors. To select a new color, move the cursor with the joystick to the desired color.

LED-Pad Display-colsel.jpg

The selected color is transmitted to a pre-configured MQTT server which is connected to via WiFi. The MQTT message payload is a hex string of the currently selected RGB color.

Hardware

The heart of the LED-Pad is an ESP8266, an MCU with a WiFi transceiver on board.

The joystick used is from Sparkfun and has two potentiometers to signal the current position of the stick for each respective axis.

The ESP8266 has only one analog input port, so I'm using a 4051 multiplexer IC with which I can hook up to 8 analog inputs to this single input. The joystick needs only two ports, so the selection line of the least significant bit is connected to a digital pin on the ESP while the remaining two selection lines are connected to the ground. The software rapidly toggles the selection line of the 4051 so it can read from both axes.

The joystick's button is hooked up to a digital pin which is configured as an input with internal pullup.

ESP8266 Connections

| ESP8266 | Peripheral |
| ------- | ---------- |
| D3      | OLED RES   |
| D2      | OLED DC    |
| D1      | OLED CS    |
| D5      | OLED SCL   |
| D7      | OLED SDA   |
| A0      | 4051 Z     |
| D8      | 4051 S0    |
| D4      | JOY SEL    |