Go programming on a Raspberry Pi
Simple Go Web App
The web_static.go
web application in Listing 2 shows the static web page in Listing 3. The web app uses the net/http library to define a default handler (line 9), that calls the static page (line 10). The app then listens and serves up data on port 8081 (line 14).
Listing 2
web_static.go
Listing 3
web_static.html
To compile and test web_static.go
, enter:
$ go build web_static.go $ ./web_static Default Web Page
When you use a web browser to call the Rasp Pi address at port 8081 (Figure 2), you should see the message This is a static test page from the Go application every time the page is called.
GPIO Web App
The final step is to pull everything together so that a web page can pass parameters to a Go app that shells out to the gpio
command-line utility. To begin, you create new web page (go_buttons.html
) with two buttons (Listing 4). HTML anchor tags pass the /on
and /off
parameters to the web app.
Listing 4
web_buttons.html
A CACHE-CONTROL
meta tag set to NO-STORE
ensures that the web page always refreshes. If you don't include this meta tag, the web page might only update once.
The Go GPIO web app go_buttons.go
(Listing 5) now includes two additional http.HandleFunc
handler functions: one for the /on
parameter (line 30) and one for the /off
parameter (line 37). These handler functions pass the required pin state to a function called gpio
.
Listing 5
go_buttons.go
The newly created gpio
function acts very much like the earlier writepin7.go
code (Listing 1), in that it shells out twice to the gpio
command-line utility: the first time to write a value and the second time to read the value back. Web page requests, GPIO pin results, and errors are shown in the terminal.
The syntax to compile and run the go_buttons.go
code with some sample web requests is:
$ go build go_buttons.go $ ./go_buttons Default Web Page Web Page sent : ON GPIO Pin 4 value : 1 Default Web Page Web Page sent : OFF GPIO Pin 4 value : 0
Figure 3 shows the web output and the test setup.
Summary
Go offers a robust platform for web applications. From the basic web page example in this article, I created more advanced Rasp Pi projects, such as the rover shown in Figure 4 that required writing to multiple GPIO pins.
For a polished application, I would rather use a native Go library for GPIO calls, but for prototyping and troubleshooting, I found the gpio
command-line utility was very useful.
The next step for my Rasp Pi projects will be to add JavaScript and Ajax to show dynamic values.
Infos
- Go programming language: https://golang.org/
« Previous 1 2
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
-
elementary OS 7.1 Now Available for Download
The team behind elementary OS has released the latest version of its operating system with a focus on personalization, inclusivity, accessibility, and privacy.
-
The GNU Project Celebrates Its 40th Birthday
September 27 marks the 40th anniversary of the GNU Project, and it was celebrated with a hacker meeting in Biel/Bienne, Switzerland.
-
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 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.