DIY Stripboard/Veroboard Enclosure for Raspberry Pi (Part 2)

Following up my previous post entitled “DIY Modular Stripboard / Perfboard Casing for Raspberry Pi (Part 1)” where I explained how I created an modular enclosure made of perfboard, or the overall concept, I’ve now designed two “smart” sides for the enclosure: a 16-LED stripboard side, and a 5V relay stripboard side. Today, I’ll detail how I’ve done this, with details about electronics, soldering, assembly, the Linux distribution (built with Yocto), as well C programs, HTML page, and (CGI) shell scripts used to light up the 16 LEDs, and control a standard 220V lamp with a relay via my phone’s web browser.

16-LED Stripboard Top Schematics, Soldering, and Testing

I had decided to design the top board of the enclosure with several LEDs, 3 LEDs on both side, and a Raspberry fruit (6 red LED) and 2 leaves (4 green LED) in the middle. Before getting started, I did some experiment on a breadboard, and quickly discovered that 5V LEDs can’t simply be put in series (2 LEDs require 10V, 6 LEDs 30V and so on), so I had to connect them in parallel with a resistor for each. My initial plan was actually to use 11 LEDs in series just for the Raspberry, which I scaled down to 6 LEDS in parallel due to lack of space.

Finally, I went with the schematics below, drawn for the purpose of this blog post, with Kicad in Ubuntu.

Stripboard Enclosure LED Schematics
Stripboard Enclosure LED Schematics (Click to Enlarge)

Since the LED are 5V, and Raspberry Pi GPIO output 3.3V, you need a transistor to handle voltage difference. The transistor base resistor is to limit the GPIO current (33k Ohm resistors worked for me), and I selected the LED resistors based on breadboard trial and error. 220 Ohm seemed good for red and yellow LEDs, as well as small green LED, but I had to with 75 Ohm resistors for the green LEDs, as they were just too dim with 220 Ohm resistor.

I bought my components from dx.com and ebay:

  • 50x 2N2222 NPN Transistors – $1.13
  • 5x Perfboards – $6.60
  • 100x 5V LEDs (Green/Red/Yellow) – $4.60
  • 2500x resistors with different resistances – $17.60 (I think I may now have enough resistors for the rest of my life…)
  • 40x 30cm breadboard wires – $4.90

I decided to only show the LED on the top of the board, and solder all other components on the other side. You just need plier to cut the components wire leads as close as possible from the stripboard surface.

Raspberry_Pi_Stripboard_LED_TopI started soldering the 5V line, and you can see I struggled a bit at that stage to connect the soldering pad. Finally, I found out I had to remove the soldering iron quickly, as soon as the solder was melt on 2 adjacent pads, and the rest of the board looks a little better.
Raspberry_Pi_Stripboard_LED_solder_side

Before testing it, you’d better check, and even double check, the connections with a multimeter, or you may damage your Raspberry Pi if something goes wrong. I connected 5V and GND to the 26-pin header of the Raspberry Pi, as well as the 3.3V pin to test the 9 inputs (and 16 LEDs).  Once I confirmed everything worked, I used a glue gun to add isolation between parts that present a risk a short-circuit.

Relay Stripboard Side Schematics, Soldering, and Testing

I bought a cheap relay module for Arduino ($2.40) to add the side SD card / power supply side of the Raspberry Pi case.

Raspberry Pi Relay Schematics (Adapted from Pic at susa.net)
Raspberry Pi Relay Schematics

I adapter the schematics above from susa.net, as I did not need the extra D1 diode as it is already part of the relay board. Instead of BC337 transistor, I used 2N2222 with a 33 kOhm transistor base resistor. I also threw caution out of the window, as I connected 220V load, but  more on that later.

Compared to the LED board, soldering was child play.
Raspberry_Pi_Stripboard_Relay

I used 7 stand offs to fasten the relay board to my perfboard, adding some screw isolation caps, as the 3 stand-offs screw at the top were too long. The 3 pins on the left of the picture below are + (Connected to 5V), – (Connected to Ground), and S (connected to GPIO 25 on RPi). On the right you are three pins of the load with COMMON in the middle, NC (Normal Close contact) and NO (Normal Open contact) on the sides. If you want your device to be ON by default, connect NC and COMMON, otherwise NO and COMMON.
Raspberry_Veroboard_Relay

As with the LED board, I checked the connection with a multimeter first, and then with a breadboard. Since using 220V with a breadboard would be suicidal, I decided to use a 5V LED for testing instead, using the connection diagram from openhomeautomation.net.

Raspberry_Pi_Relay_Breadboard

It worked fine, so it was time to move on to the enclosure assembly.

Raspberry Pi Modular Enclosure Connection and Assembly

I actually have 3 “smart” sides: the LED top board, the relay board, and the board to access the serial console.
The LED board requires +5V and GND, and the 9 GPIO pins listed in the schematics. The relay board requires two other 5V and GND pins, as well as GPIO 25, and the serial port board is connected to Tx/Rx and GND. All cables are connected to P1 pin-header on the Raspberry Pi.

Raspberry_Pi_Stripboard_LED_Relay_Connected_640px
Perfboards Connections (Click to Enlarge)

After checking, and double checking the connections, I could just fasten the different pieces together, as I did previously when there were not circuit on the perfboards.

Rasbperry_Pi_Stripboard_LED_Relay

The last step before moving to software was to connect an interesting load. I figured out the easiest way was probably to just connect a lamp, and disassemble the lamp switch.

Left: Disassembled switch, middle, connection to relay, right: Raspberry Pi and Lamp (Click to Enlarge)
Left: Disassembled switch; Middle: Connection to relay; Right: Raspberry Pi and Lamp; (Click to Enlarge)

To avoid a short-circuit between the 2 parts of the cable, I used the most commonly used insulator in Thailand: Black tape.

Software – Linux, Controlling LEDs with GPIO and the Relay with a Web page.

There are already many instructions available to control Raspberry Pi’s GPIO, setup a web server, etc… But I added a little challenge to my setup by using a 256MB SD card. That means Raspbian cannot be installed, you have to cross-compile your program, as there’s not enough space to install the GCC toolchain, and you can’t use web servers like Apache2 or nginx either. That may look like self-inflicted unnecessary pain, but it’s a nice training exercise, as it’s much closer to what engineers actually use to develop networked embedded devices.

Since I can’t use Raspbian, I’ve decided to use a minimal image built with Yocto instead. I’ve already written the instructions to use Yocto for Raspberry Pi previously, but I won’t use the exact Yocto image I generated in that post, as I’ll have to enable more options in busybox.

We can’t build anything directly on the Raspberry Pi, so we need to find a cross-toolchain. The good news is that Yocto already made one for us (and itself) which you can find in ./poky/build/tmp/sysroots/x86_64-linux/usr/bin/armv6-vfp-poky-linux-gnueabi/ directory.

Let’s add it to our path:


I’ll use bcm2835 library to control the GPIOs, so let’s download, build, and install it to ~/edev/rpi/gpio directory:


I’ve written two simple C programs:

  • gpio_out.c – Use to set a GPIO pin high or low. Usage: ./gpio_out [pin] [value]. I’ll use it to control the relay.
  • stripboardled.c – A loop to lit the 16 LEDs on the top board in a fancy way

Let’s cross-compile then in ~/edev/rpi/gpio directory:


We’ve now got the binary in our Linux PC. A typical way to exchange files between the target device and the build machine is to use an NFS server:


Then edit /etc/exports as root (sudo) and add the line:


Now access the Raspberry Pi board via the serial console, SSH or an HDMI display, and mount the NFS share:


Copy the programs in the Linux  computer to the NFS share:


We can try those in the Raspberry Pi to flash the LEDs, and turn on the light connected to the relay:


There’s no http server in the minimal Yocto image, and since our needs are limited (html + cgi), I’ll enabled httpd in busybox. Referring to the post Image for Raspberry Pi using the Yocto Project, we’ll need to configure busybox, enable httpd with CGI support, and rebuild the image:


Let’s copy the image to the SD card, boot the Raspberry Pi, and create the necessary files in the board to control the relay.

  • /www/light.htm – An HTML form with On/Off buttons (See code)
  • /www/cgi-bin/lighton – Shell script to turn on the relay (See code)
  • /www/cgi-bin/lightoff – Shell script to turn off the relay (See code)

lighton/off shell scripts are ugly hacks that call /usr/sbin/gpio_out, and reaload light.htm with a redirect. There’s certainly a better way to do this with HTML + CGI, but it works…

We also need to copy the “GPIO” binaries to /usr/sbin in the Raspberry Pi, and set the permission for the scripts:


Since I wanted the system to automatically, I’ve added the following line at the end of  /etc/inittab:


and created /usr/sbin/rpi.sh to start the http server, and the LED demo program:


Finally, set the permission for rpi.sh, and restart the board:


The LED should start to blink after a few seconds, and you should be ableto turn on/off the light bulb with a web browser, as shown in the demo below.

Share this:

Support CNX Software! Donate via cryptocurrencies, become a Patron on Patreon, or purchase goods on Amazon or Aliexpress

ROCK Pi 4C Plus
Subscribe
Notify of
guest
The comment form collects your name, email and content to allow us keep track of the comments placed on the website. Please read and accept our website Terms and Privacy Policy to post a comment.
0 Comments
Khadas VIM4 SBC