Dashboard for RaspPi-controlled toy sailboat with Node-RED
Sail Away

© Lead Image © shamain, 123RF.com
With Node-RED, you can create a web dashboard that instructs a Raspberry Pi to set the rudder position on a toy sailboat.
My daughters and I have built a number of toy boat projects with an assortment of Arduino, ESP8266 (WiFi), Bluetooth, and radio frequency interference (RFI) components, but the version we created for this article using a Raspberry Pi and Node-RED [1] offers one of the simplest solutions. The sailboat uses a basic catamaran design with a Raspberry Pi mounting inside a waterproof container. With Node-RED dashboards, you can control the sailboat's rudder from a smartphone. The complete Node-RED logic comprises only six nodes.
Building the Sailboat
Of the many different building materials from which you could choose, K'Nex construction pieces [2] are lighter than either Lego or Meccano, and they allow you to create reasonably large structures with a minimum number of pieces. If you do not have access to K'Nex pieces, popsicle sticks and cardboard would offer a good low-cost solution.
To build the sailboat we used:
- K'Nex building pieces
- Four plastic bottles
- Small plastic container with a lid
- String
- Duct tape
- Garbage bag
- Low-torque servo
- Raspberry Pi Zero W or 3
- Small USB phone charger
The base of the sailboat was a rectangular structure with 16 water-facing K'Nex pieces that allowed plastic bottles to be duct-taped in place (Figure 1). A few K'Nex pieces created a compartment for the servo, and wire secured the servo in place. A rudder was built by screwing a small piece of wood into the servo arm (Figure 2). A garbage bag was cut to the required size and taped to the mast to form a sail. The boom had a swivel connection to the mast and guide ropes connected to both the boom and mast (Figure 3).
Servo and Rudder
Only very low torque servos can be connected directly to Raspberry Pi GPIO pins (Figure 4). An example of a low-torque servo would be the TowerPro SG90 [3] ($4), which has a torque of 25 oz/in (1.80 kg/cm). If you have servos with greater torque, you will need to use either a custom Raspberry Pi servo hat (there are some good ones on the market) or a separate power and ground circuit for the servo.
The WiringPi gpio
tool can be used to control the servo. This package is pre-installed on the Raspbian image, or it can be installed manually by entering:
sudo apt-get install -y wiringpi
Servos typically want a pulse frequency of 50Hz; however, the Raspberry Pi pulse width modulation (PWM) pins have a frequency of 19,200Hz, so some range definitions and scaling are required:
gpio -g mode 18 pwm #define pin 18 as the PWM pin gpio pwm-ms # use "mark space" mode gpio pwmc 192 # set freq as 19200 gpio pwmr 2000 # use a range of 2000
The gpio pwm
commands are not persistent after a reboot. A simple solution for this problem is to put the above commands in the Pi user login file $HOME/.bash_login
.
After running the PWM setup commands, you need to do some manual testing to define your various rudder (servo) positions (Figure 5), such as Hard Left, Hard Right, Easy Left, Easy Right, and Straight. The pwm
timing numbers will vary according to your requirements and the positioning of the servo arm. We used the commands
gpio -g pwm 18 200 #straight gpio -g pwm 18 260 #hard left gpio -g pwm 18 140 #hard right gpio -g pwm 18 230 #easy left gpio -g pwm 18 170 #easy right
for our sailboat.
Node-RED Logic and Dashboards
Node-RED is pre-installed on the Raspbian image, but it will need to be set to autostart on a Pi reboot with:
sudo systemctl enable nodered.service
The Node-RED web interface for configuration is accessed at http://localhost:1880 or http://<pi_ip_address>:1880. Selecting View | Dashboard brings up the options button on the far right (Figure 6), where you can define and change the web dashboard layout. To create logic, nodes are selected from the left node panel and dragged and dropped onto the center flow panel. Logic flow is then created by clicking and joining together the inputs and outputs on the nodes [4]. When a dashboard node is dropped onto the flow panel, it is added to the default web dashboard.
To call the gpio -g pwm
command, use the exec node (Figure 7). The button dashboard node will pass the defined payload value (e.g., a 260 is passed when the Hard Left button is pushed). The button's payload value is appended to the exec command to make a complete servo position command.
Once you have completed your logic setup, press the Deploy button on the top right to make your configuration live and ready to test.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you've found an article to be beneficial.
News
-
Linux Kernel Reducing Long-Term Support
LTS support for the Linux kernel is about to undergo some serious changes that will have a considerable impact on the future.
-
Fedora 39 Beta is Now Available for Testing
For fans and users of Fedora Linux, the first beta of release 39 is now available, which is a minor upgrade but does include GNOME 45.
-
Fedora Linux 40 to Drop X11 for KDE Plasma
When Fedora 40 arrives in 2024, there will be a few big changes coming, especially for the KDE Plasma option.
-
Real-Time Ubuntu Available in AWS Marketplace
Anyone looking for a Linux distribution for real-time processing could do a whole lot worse than Real-Time Ubuntu.
-
KSMBD Finally Reaches a Stable State
For those who've been looking forward to the first release of KSMBD, after two years it's no longer considered experimental.
-
Nitrux 3.0.0 Has Been Released
The latest version of Nitrux brings plenty of innovation and fresh apps to the table.
-
Linux From Scratch 12.0 Now Available
If you're looking to roll your own Linux distribution, the latest version of Linux From Scratch is now available with plenty of updates.
-
Linux Kernel 6.5 Has Been Released
The newest Linux kernel, version 6.5, now includes initial support for two very exciting features.
-
UbuntuDDE 23.04 Now Available
A new version of the UbuntuDDE remix has finally arrived with all the updates from the Deepin desktop and everything that comes with the Ubuntu 23.04 base.
-
Star Labs Reveals a New Surface-Like Linux Tablet
If you've ever wanted a tablet that rivals the MS Surface, you're in luck as Star Labs has created such a device.