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), Simon Ritter (Azul), Geertjan Wielenga (Azul and Foojay)
- 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
- Content overview
- Update 2022
- 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
-
Shopping list
- Raspberry Pi
- Electronics
-
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
- Temurin
- Azul Zulu
- Interview with Simon Ritter
- BellSoft Liberica
- Interview with Alexander Belokrylov
-
Installing the Java JDK
- Install Java JDK on a Windows PC
- Install Java JDK on a Linux PC or macOS 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
-
Foojay.io
- Java Version Almanac
- OpenJDK Update Release Details
- OpenJDK Command Line Arguments
- Foojay Today
- Comprehensive Search
- Interview with Geertjan Wielenga
-
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
- Minimal V2 example with a LED and button
- Take a quick start with JBang
- Just a thought: Switching social
-
Chapter 10: Spring
- What is Spring Boot?
- What is Spring Initializr?
- Interview with Mark Heckler
-
Example 1: Minimal web server 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
80% Royalties. Earn $16 on a $20 book.
We pay 80% royalties. That's not a typo: you earn $16 on a $20 sale. If we sell 5000 non-refunded copies of your book or course for $20, you'll earn $80,000.
(Yes, some authors have already earned much more than that on Leanpub.)
In fact, authors have earned$12,307,240writing, publishing and selling on Leanpub.
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) and EPUB (for phones, tablets and 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
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.
Personal Finance
Jason AndersonThis textbook provides an in-depth analysis on personal finance that is both practical and straightforward in its approach. It has been written in such a way that the readers can gain knowledge without getting overwhelmed by the technical terms. Suitable for both beginners and advanced learners.
Getting to Know IntelliJ IDEA
Trisha Gee and Helen ScottIf we treat our IDE as a text editor, we are doing ourselves a disservice. Using a combination of tutorials and a questions-and-answers approach, Getting to Know IntelliJ IDEA will help you find ways to use IntelliJ IDEA that enable you to work comfortably and productively as a professional developer.
C++20 - The Complete Guide
Nicolai M. JosuttisAll new language and library features of C++20 (for those who know previous C++ versions).
The book presents all new language and library features of C++20. Learn how this impacts day-to-day programming, to benefit in practice, to combine new features, and to avoid all new traps.
Buy early, pay less, free updates.
Other books:
Mastering STM32 - Second Edition
Carmine NovielloWith more than 1200 microcontrollers, STM32 is probably the most complete ARM Cortex-M platform on the market. This book aims to be the most complete guide around introducing the reader to this exciting MCU portfolio from ST Microelectronics and its official CubeHAL and STM32CubeIDE development environment.
R Programming for Data Science
Roger D. PengThis book brings the fundamentals of R programming to you, using the same material developed as part of the industry-leading Johns Hopkins Data Science Specialization. The skills taught in this book will lay the foundation for you to begin your journey learning data science. Printed copies of this book are available through Lulu.
Machine Learning Q and AI
Sebastian Raschka, PhDHave you recently completed a machine learning or deep learning course and wondered what to learn next? With 30 questions and answers on key concepts in machine learning and AI, this book provides bite-sized bits of knowledge for your journey to becoming a machine learning expert.
Stats One
William FooteThe Rails 7 Way
Obie Fernandez, Lucas Dohmen, and Tom Henrik AadlandThe Rails™ 7 Way is the comprehensive, authoritative reference guide for professionals delivering production-quality code using modern Ruby on Rails. It illuminates the entire Rails 7 API, its most powerful idioms, design approaches, and libraries. Building on the previous editions, this edition has been heavily refactored and updated.
Gradual Modularization for Ruby and Rails
Stephan HagemannGet yourself a new tool to manage your Rails application and your growing engineering organization! Prevent the ball-of-mud (and fix it!). Go for microservices or SOA if it makes sense not just because you don't have any other tool. Do all this through a low-overhead tool: packages. Enable better conversations to make practical changes today.
Top Bundles
- #1
Software Architecture
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... - #2
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... - #3
1500 QUIZ COMMENTATI (3 libri)
3 Books
Tre libri dei QUIZ MMG Commentati al prezzo di DUE! I QUIZ dei concorsi ufficiali di Medicina Generale relativi agli anni: 2000-2001-2003-2012-2013-2014-2015-2016-2017-2018-2019-2020-2021 +100 inediti Raccolti in unico bundle per aiutarvi nello studio e nella preparazione al concorso. All'interno di ogni libro i quiz sono stati suddivisi per... - #4
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... - #5
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!? - #6
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... - #7
Linux Administration Complet
4 Books
Ce lot comprend les quatre volumes du Guide Linux Administration :Linux Administration, Volume 1, Administration fondamentale : Guide pratique de préparation aux examens de certification LPIC 1, Linux Essentials, RHCSA et LFCS. Administration fondamentale. Introduction à Linux. Le Shell. Traitement du texte. Arborescence de fichiers. Sécurité... - #9
Development and Deployment of Multiplayer Online Games, Part ARCH. Architecture (Vol. I-III)
3 Books
What's the Big Idea? The idea behind this book is to summarize the body of knowledge that already exists on multiplayer games but is not available in one single place.And quite a fewof the issues discussed within this series (planned as three nine volumes ~300 pages each), while known in the industry, have not been published at all (except for... - #10
Growing Agile: The Complete Coach's Guide
7 Books
Growing Agile: Coach's Guide Series This bundle provides a collection of training and workshop plans for a variety of agile topics. The series is aimed at agile coaches, trainers and ScrumMasters who often find themselves needing to help teams understand agile concepts. Each book in the series provides the plans, slides, handouts and activity...