Getting started with Java on the Raspberry Pi - UPDATE 2022
Getting started with Java on the Raspberry Pi - UPDATE 2022
A lot of small and bigger examples to introduce you to Java (11+), JavaFX (11+), Pi4J, Spring, Queues... with hardware projects on the Raspberry Pi.
About the Book
When I first managed to blink an LED connected to a Raspberry Pi with Java, I was super excited! Controlling physical things with some lines of code is magic! This book includes a lot of info and history about Java itself and how to install it on the Raspberry Pi. Also, a lot of tips and tricks to become or be a better developer. And above all many simple examples on these and even more other topics:
- The magic of Bits and Bytes and solving the confusion of Java signed values with the help of a led number display.
- Beautiful user interfaces made with JavaFX so you can interact with the hardware.
- Pi4J applications to be able to control different types of hardware like LEDs, buttons, displays, led strips, relais boards, and more.
- Spring applications so you can interact with your Pi via web interfaces.
- How to set up a queue so you can send and receive messages to and from Arduino boards or other Pi's.
- Interviews with some of my heroes: Karen Mouws (STEM and diversity), Alexander Belokrylov (BellSoft Liberica JDK), Trisha Gee (IntelliJ IDEA), Xiaokai He (Visual Studio Code), Jakob Jenkov (tutorials.jenkov.com), Johan Vos (OpenJFX, JavaFX and GluonHQ), Robert Savage (Pi4J), Gerrit Grunwald (JavaFX, TilesFX), Mark Heckler (Spring), Vlad Mihalcea (JPA, Hibernate)
- And a lot of other inspirational ideas and getting started examples, to be able to build your dream do-it-yourself project.
My goal was to collect all the information that would have been bundled at the time I started my own experiments with Java on the Raspberry Pi. If you are new to Java, you will learn the language bit by bit by following the examples. As an experienced Java programmer, you will learn how you can extend your knowledge and control the world around you with simple and inexpensive components.
Table of Contents
-
Chapter 1: Introduction
- Update 2022
- Content overview
- About me
-
Sources and scripts used in this book
- Where to find them
- Get the sources
- The styling used in the book
-
Read the README!
- Guidelines
- Example
- What’s next?
- Thanks to…
-
Chapter 2: Tools and hardware used in this book
-
Raspberry Pi
- Prepare the Pi
- Connections between Pi and breadboard
-
Software tools on the Pi
- Linux commands crash course
- Firefox
- VNC server
- Enable SSH on the Pi
-
Free software tools on PC
- Integrated development environment aka IDE
- Remote connection to a Raspberry Pi (SSH)
- Wiring diagrams
- Schematic drawings
-
Hardware components
- Resistors
- LEDs
- RGB-LED
- LED strips
- Electronic kit with Arduino board
-
Raspberry Pi
-
Just a thought: Learn by educating
- Interview with Karen Mouws
-
Chapter 3: Choosing an IDE
-
IntelliJ IDEA
- Using IntelliJ IDEA with the example projects
- Interview with Trisha Gee
-
Visual Studio Code (VSC)
- VSC on Raspberry Pi OS 32-bit
- VSC on Raspberry Pi OS 64-bit
- VSCodium the free non-tracking alternative to VSC
- Java development with Visual Studio Code
- Using Visual Studio Code on the PC with code on the Pi
- Interview with Xiaokai He
-
IntelliJ IDEA
-
Chapter 4: About Java
- History
- Java files versus byte code
-
JVM versus JRE versus JDK
- JVM = Java Virtual Machine
- JRE = Java Runtime Environment
- JDK = Java Development Kit
- Version history
-
JDK providers
- Oracle
- AdoptOpenJDK
- Azul Zing and Zulu
- BellSoft Liberica
- Interview with Alexander Belokrylov
-
Installing the Java JDK
- Install Java JDK on a Windows PC
- Install Java JDK on a Linux PC with SDKMAN
- Install Java JDK on a Raspberry Pi
-
Some of the changes between Java versions
- Changes between Java 8 and 11
- What’s next after Java 11?
-
Java crash course
- HelloWorld! Running a single-file Java-application
- Using the start-up arguments
- Working with numbers
- If, Then, Else
- Enum and Switch
- Using methods
- Using objects
- Reading a text file
- Using streams
- What’s next?
- Interview with Jakob Jenkov
-
Chapter 5: Raspberry Pi pinning
-
Raspberry Pi types
- Models
- Major versions
- Board versions
-
Pin types
- Power and ground
- Digital GPIO
-
Pin functions
- Universal Asynchronous Receiver and Transmitter (UART - Serial)
- General Purpose Clock (GPCLK)
- Inter Integrated Circuit (I²C)
- Serial Peripheral Interface (SPI)
- Pulse-Width Modulation (PWM)
-
Header types
- 40-pin header
- 26-pin header - Type 1 and 2
- 8-pin header
-
Different pinning numbering schemes
- Board (pin) number
- BCM number
- WiringPi number
-
Raspberry Pi types
-
Chapter 6: What is Maven?
-
Install Maven
- On Windows PC
- On Raspberry Pi
-
Generate a new Maven project
- Project structure
- A minimal pom.xml example
- Maven pom-files used in this book
- Add application logging with Maven and log4j
-
Install Maven
- Just a thought: Abbreviations
-
Chapter 7: About JavaFX
- History
- Interview with Johan Vos
-
Sample libraries to extend JavaFX
- TilesFX
- FXRibbon
- ControlsFX
- PickerFX
- Interview with Gerrit Grunwald
-
Minimal JavaFX 11 sample application
- Add new archetypes to Maven
- Creating an empty application
- Running the empty application from Visual Studio Code
- Running the application on the Pi
-
Example 1: TilesFX dashboard
- Wiring and testing in terminal
- Blink an LED with Java
- Building our first JavaFX application
- Run the application on PC
- Run the application on the Pi
- Conclusion
- Start a Java application when the Pi starts up
- Disable screensaver
-
Example 2: Interact with an I²C relay board
- Enable and test I²C
- Coding the I²C controller application
- Running the relay controller on the Pi
-
Example 3: Build a UI with FXML
- Generate an empty FXML project as a starting point
- Scene Builder
- Just a thought - Beware of the PAF
-
Chapter 8: Bits and bytes
- Convert bits to a numeric and hex value
- Calculate a byte value
-
Value ranges in Java
- Difference between Byte, Short, Integer and Long
- Minimum and maximum values in Java
- Signed versus unsigned
- Conclusion
-
What can we do with this?
- Web colors
- Controlling a numeric segment display
-
Chapter 9: Pi4J
- Interview with Robert Savage
-
Pi4J V.1
- Installation
- Programming with Pi4J
- Digital GPIO input and output examples
- PWM example
- SPI example with MAX7219 and 8x8 LED-matrix
- Serial communication example with an Arduino
- LCD-display with the weather forecast
- Pi4J V.2
- Just a thought: Switching social
-
Chapter 10: Spring
- What is Spring Boot?
- What is Spring Initializr?
- Interview with Mark Heckler
-
Example 1: Minimal webserver on the Pi
- Start from the Initializr project and modify pom.xml
- Application properties
- Image controller
- Swagger config
- Run on the Pi
- Conclusion
-
Example 2: Database REST-service for IoT data on Pi
- pom.xml settings
- Creating the database entities
- Storing data in the database
- Adding the REST-services
- Adding Swagger
- Running the application and using the REST-services
- Configuration to run on the Pi
- Conclusion
- Interview with Vlad Mihalcea
-
Example 3: REST-service on the Pi to toggle an LED
- Info REST-controller
- GPIO Manager
- GPIO REST-controller
- Running the application on a Pi
- Conclusion
-
Example 4: Reactive data
- The code
- Running the streaming application on the Pi
- Conclusion
- Just a thought: Impostor Syndrome
-
Chapter 11: Message Queues
-
Using Mosquitto on the Pi
- Installation
- Testing Mosquitto on the Pi
-
Example 1: Share data between Pi and PC
- Modifying the pom and module-info
- Connecting and publishing to Mosquitto
- Subscribing to Mosquitto
- The user interface
-
Example 2: Control Arduino from JavaFX via Mosquitto
- Defining the messages
- The Arduino part
- The Java application
- The finished setup
- Tip: Checking the network packages between Arduino and Pi
-
Using Mosquitto on the Pi
- Conclusion
- Notes
The Leanpub 60-day 100% Happiness Guarantee
Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.
See full terms
Do Well. Do Good.
Authors have earned$11,577,045writing, publishing and selling on Leanpub, earning 80% royalties while saving up to 25 million pounds of CO2 and up to 46,000 trees.
Learn more about writing on Leanpub
Free Updates. DRM Free.
If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).
Most Leanpub books are available in PDF (for computers), EPUB (for phones and tablets) and MOBI (for Kindle). The formats that a book includes are shown at the top right corner of this page.
Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.
Learn more about Leanpub's ebook formats and where to read them
Top Books
Recipes for Decoupling
Matthias NobackSignalR on .NET 6 - the Complete Guide
Fiodar SazanavetsLearn everything there is to learn about SignalR and how to integrate it with the latest .NET 6 and C# 10 features. Learn how to connect any type of client to SignalR, including plain WebSocket client. Learn how to build interactive applications that can communicate with each other in real time without making excessive calls.
The BDD Books - Discovery (Japanese Edition)
Gáspár Nagy, Seb Rose, and Yuya Kazamaウクライナ難民を支援 - 2022年5月末まで延長!
この本の売り上げの50%は、 https://unicef.hu/veszhelyzet-ukrajnaban と https://int.depaulcharity.org/fundraising-for-depaul-ukraine/ に寄付されます。
本書籍は、振る舞い駆動開発(Behavior Driven Development, BDD)や受け入れテスト駆動開発(Acceptance Test-Driven Development, ATDD)の発見フェーズを最大限に活用する方法を提供します。
The easiest way to learn design patterns
Fiodar SazanavetsLearn design patterns in the easiest way possible. You will no longer have to brute-force your way through each one of them while trying to figure out how it works. The book provides a unique methodology that will make your understanding of design patterns stick. It can also be used as a reference book where you can find design patterns in seconds.
Agile Testing Condensed Japanese Edition
Yuya Kazama, Janet Gregory, and Lisa CrispinJanet GregoryとLisa Crispinによる2019年9月発行の書籍『Agile Testing Condensed』の日本語翻訳版です。アジャイルにおいてどのような考えでテストを行うべきなのか簡潔に書かれています!
OpenIntro Statistics
David Diez, Christopher Barr, Mine Cetinkaya-Rundel, and OpenIntroA complete foundation for Statistics, also serving as a foundation for Data Science.
Leanpub revenue supports OpenIntro (US-based nonprofit) so we can provide free desk copies to teachers interested in using OpenIntro Statistics in the classroom and expand the project to support free textbooks in other subjects.
More resources: openintro.org.
Tech Giants in Healthcare
Dr. Bertalan MeskoThis comprehensive guide, Tech Giants in Healthcare, clarifies how and why big tech companies step into healthcare, and breaks it down from one market player to the other in what direction they are going, what tools they are using and what horizons they have in front of them.
Functional event-driven architecture: Powered by Scala 3
Gabriel VolpeExplore the event-driven architecture (EDA) in a purely functional way, mainly powered by Fs2 streams in Scala 3!
Leverage your functional programming skills by designing and writing stateless microservices that scale, powered by stateful message brokers.
CCIE Service Provider Version 4 Written and Lab Exam Comprehensive Guide
Nicholas RussoThe service provider landscape has changed rapidly over the past several years. Networking vendors are continuing to propose new standards, techniques, and procedures for overcoming new challenges while concurrently reducing costs and delivering new services. Cisco has recently updated the CCIE Service Provider track to reflect these changes; this book represents the author's personal journey in achieving that certification.
Ansible for DevOps
Jeff GeerlingAnsible is a simple, but powerful, server and configuration management tool. Learn to use Ansible effectively, whether you manage one server—or thousands.
Top Bundles
- #1
All the Books of The Medical Futurist
6 Books
We put together the most popular books from The Medical Futurist to provide a clear picture about the major trends shaping the future of medicine and healthcare. Digital health technologies, artificial intelligence, the future of 20 medical specialties, big pharma, data privacy, digital health investments and how technology giants such as Amazon... - #2
Practical FP in Scala + Functional event-driven architecture
2 Books
Practical FP in Scala (A hands-on approach) & Functional event-driven architecture, aka FEDA, (Powered by Scala 3), together as a bundle! The content of PFP in Scala is a requirement to understand FEDA so why not take advantage of this bundle!? - #3
Software Architecture for Developers: Volumes 1 & 2 - Technical leadership and communication
2 Books
"Software Architecture for Developers" is a practical and pragmatic guide to modern, lightweight software architecture, specifically aimed at developers. You'll learn:The essence of software architecture.Why the software architecture role should include coding, coaching and collaboration.The things that you really need to think about before... - #4
CCIE Service Provider Ultimate Study Bundle
2 Books
Piotr Jablonski, Lukasz Bromirski, and Nick Russo have joined forces to deliver the only CCIE Service Provider training resource you'll ever need. This bundle contains a detailed and challenging collection of workbook labs, plus an extensively detailed technical reference guide. All of us have earned the CCIE Service Provider certification... - #6
Pattern-Oriented Memory Forensics and Malware Detection
2 Books
This training bundle for security engineers and researchers, malware and memory forensics analysts includes two accelerated training courses for Windows memory dump analysis using WinDbg. It is also useful for technical support and escalation engineers who analyze memory dumps from complex software environments and need to check for possible... - #8
Modern C++ Collection
3 Books
Get All about Modern C++C++ Standard Library, including C++20Concurrency with Modern C++, including C++20C++20Each book has about 200 complete code examples. Updates are included. When I update one of the books, you immediately get the updated bundle. You can expect significant updates to each new C++ standard (C++23, C++26, .. ) and also...