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
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.