This project was started in 2015.
Among several modules, some emerged. We clearly have two major threads:
- Actuators and Sensors (look into
raspberry-io-pi4j
and others)- Navigation utilities (look into
raspberry-sailor
,NMEA-multiplexer
and others)Those two above can interact. For example, navigation software can use sensors.
And again, this project is not limited to those two threads, by far.
Main keywords:
- Raspberry Pi
- Java and JVM-related languages
- PI4J, Sensors, Actuators
- Navigation, Sailing, NMEA
- Gradle
- Maven
- Github
- Sensors & Actuators interaction (through Raspberry Pi's GPIO header)
- Different communication protocols (HTTP, TCP, WebSockets, MQTT, ...)
- NMEA protocol implementations (and related utilities)
- Some modules will also use
OpenCV
(an OpenSource Project for Computer Vision). See below how not to use them, if needed. It's worth a look, though.
The project - and its different modules - are built using Gradle
.
Some modules also use the librxtx
library for Serial IO (details given below)
This project is divided in several modules (Gradle modules, not git sub-modules).
Some noticeable ones are
raspberry-io-pi4j
- Contains implementation modules for various break-out boards and various communication protocols (I2C, SPI, UART, GPIO) through
the Raspberry Pi's GPIO header, and the
PI4J
library - Other libraries (like
diozero
) might show up later.
- Contains implementation modules for various break-out boards and various communication protocols (I2C, SPI, UART, GPIO) through
the Raspberry Pi's GPIO header, and the
- . . .
The point of truth, telling you what module uses what modules, is the build.gradle
of the module you are interested in.
To see the full structure, from the repo's root, type
$ ./gradlew project [--info]
The modules under raspberry-io-pi4j
use the PI4J library
(Version 1.x. Version 2.x brings in some new architecture and paradigm, not dealt with yet), itself relying on WiringPi
.
Note:
WiringPi
is now deprecated (since 2019, apparently), which makesPI4J v1.*
deprecated too.
...More to come. We are evaluating other options, like
Java downloads can come in two main flavors:
- The Java Runtime Environment (JRE), that allows you to run Java programs (ie programs compiled to run on a JVM)
- The Java Development Kit (JDK), a superset ot the JRE, that also allows you to develop Java programs.
Obviously, we need a JDK.
Since 2019 or so, Java (JDK 11) comes with the RasPi OS.
So you do not need to install it. To check its availability:
$ java -version
$ javac -version
Processing is a very cool framework, initially developed for Java, that considerably simplify code development, with great results,
implementing the concept of sketchbooks, used and reused many times since its introduction.
Some examples in this repo will indeed use Processing.
It is - at least! - a great way to get started with Java.
Processing is now also available for other languages than Java.
PI4J is a Java library that will help you access GPIO
, I2C
, SPI
, PWM
, and other hardware protocols.
$ # curl -s get.pi4j.com | sudo bash
$ curl -sSL https://pi4j.com/install | sudo bash
wget https://project-downloads.drogon.net/wiringpi-latest.deb
sudo dpkg -i wiringpi-latest.deb
Or from the source:
sudo apt-get remove wiringpi -y
sudo apt-get --yes install git-core gcc make
cd ~
git clone https://github.com/WiringPi/WiringPi --branch master --single-branch wiringpi
cd ~/wiringpi
sudo ./build
The project comes with scripts gradlew
(and its gradlew.bat
, for Windows).
The w
stands for wrapper
. When used - like in ./gradlew tasks --all
, the wrapper
will check if gradle
is here, and install it if it is not there.
This installation is driven by the file gradle/wrapper/gradle-wrapper.properties
.
This is the file to deal with, if an upgrade of the Gradle version is required.
Note: We are using here the
shadowJar
Gradle plug-in. This plug-in allows the generation of what's also called a "fat-jar", a single jar for all the application, including all its dependencies.
That does indeed make deployment and distribution much easier.
Another note: Some scripts will be featured here, to run the different modules. Those scripts are written to run in the development environment. They can be easily tweaked to run in any other context.
CP=./build/libs/NMEA-mux-PI4J-1.0-all.jar java -cp ${CP} nmea.consumers.client.AISClient
You may very well run the exact same thing, by delivering only the script and the jar, together in the same folder, all you need to do is to change the location of the delivered jar-file (saying script and jar are in the same location):
java -cp ./NMEA-mux-PI4J-1.0-all.jar nmea.consumers.client.AISClient
Think about that: You might not be able to build (using the provided Gradle scripts) an application on a small board like a Raspberry Pi Zero, but this small board could very well be big enough to run it comfortably.
You build it from a big-enough machine, and youscp
the jar to the one you want to run it on, and be done with it.
From the root of this project, you can run a full build, that would also tell you if everything is working. Just run
$ ./gradlew clean build
Depending on the size of the computer you are using (a laptop, a Raspberry Pi Zero, etc), you might want to skip
demanding steps (like Scala and Kotlin compilations), or the tests, if they are not required in your context.
To skip a task in Gradle, you need to use the -x
(like eXclude) flag.
Example, to skip the tests:
$ ./gradlew clean build -x test
To skip the Scala and Kotlin compilations, and the tests:
$ ./gradlew clean build -x test \
-x :RasPISamples:compileScala \
-x :OtherJVMLanguages:compileScala \
-x :http-client-paradigm:compileScala \
-x :http-client-paradigm:compileKotlin \
-x :Project-Trunk:System-Languages:compileKotlin \
-x :Project-Trunk:System-Languages:compileScala \
-x :Project-Trunk:Weather-Station-Implementation:compileScala \
-x :Project-Trunk:REST-clients:REST-assembler:compileKotlin \
-x :Project-Trunk:REST-clients:REST-assembler:compileScala
Warning: Some parts of this project use OpenCV
, that need to be installed separately. If you've not installed it,
or wish to skip those steps, use
$ ./gradlew clean build -x :opencv:compileJava -x :Project-Trunk:WebcamTemplate:compileJava
To know the structure of the full project:
$ ./gradlew projects [--info]
If you can read this, you obviously know what git
is... And just in case, Google is your friend (for that part).
IDEs are not mandatory (any editor, like vi
, which works everywhere Linux or any BSD clone runs, would be good enough), but they make Java development much easier. Several are available for free (NetBeans, Eclipse, IntelliJ, BlueJ, VisualCode...).
I like IntelliJ, but you can use anyone you want or prefer.
Depending on the IDE you are using, there are two main features you might be interested in:
- Remote development
- Your IDE might be too demanding for a Raspberry Pi (depending on the model you are using...). Remote development will allow you to
have the IDE on a laptop (or desktop, of course), and the files it deals with on the Raspberry Pi. It usually uses a protocol like
ssh
and its related technologies (scp
,rsync
, etc).
- Your IDE might be too demanding for a Raspberry Pi (depending on the model you are using...). Remote development will allow you to
have the IDE on a laptop (or desktop, of course), and the files it deals with on the Raspberry Pi. It usually uses a protocol like
- Remote debugging
- This is implemented through the JPDA (Java Platform Debugging Architecture) protocol, that comes with Java, and possibly implemented by your IDE. You run the code on the Raspberry Pi, and you debug (breakpoints, variable inspections, etc) on your laptop.
Remote Debugging example:
We want to run and debug the classanalogdigitalconverter.sample.MainMCP3008Sample
.
Here is a script to run on the Raspberry Pi (the remote debuggee), notice theREMOTE_DEBUG_FLAGS
variable below, and the port5005
.#!/bin/bash echo Read an ADC # JAVA_OPTS= JAVA_OPTS="$JAVA_OPTS -Dadc.verbose=false" JAVA_OPTS="$JAVA_OPTS -Ddisplay.digit=false" CP=./build/libs/ADC-1.0-all.jar # REMOTE_DEBUG_FLAGS= REMOTE_DEBUG_FLAGS="${REMOTE_DEBUG_FLAGS} -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005" # # Channel [0..1] can be passed as prm. Default is 0 sudo java -cp ${CP} ${JAVA_OPTS} ${REMOTE_DEBUG_FLAGS} analogdigitalconverter.sample.MainMCP3008Sample $*
Now, from your IDE (IntelliJ here) on the debugger machine, create a profile:
Notice theCommand line arguments for remote JVM
, and the port,5005
.
Depending on the kind of app you want to debug, you might need to setsuspend=y
in the-agentlib
directive. This will wait for the remote debugger to connect.
- In the IDE, in the code you want to debug, set breakpoint(s).
- Start the app (as per the script above) on the debuggee (the Raspberry here)
- Then start the debugger in the IDE, using the remote-debug profile you created
More here
- For Visual Studio Code; https://code.visualstudio.com/docs/remote/remote-overview
- For JetBrain (IntelliJ): https://www.jetbrains.com/help/idea/remote-development-a.html (seems to require a 64-bit remote host)
This being said, let's go.
If git
and java
are available (and they should) on your Raspberry Pi, just run
bash -c "$(curl -L https://raw.githubusercontent.com/OlivierLD/raspberry-coffee/master/install.sh)"
The command above will clone the repository, and install Gradle if needed.
This project contains Java code, many times translated from Python, dedicated to usually one board (like BMP180, LSM303, etc).
More consistent samples can be found in the RasPISamples module (being moved to the Project-Trunk
module), where several components have been assembled together.
Do take a look, it also comes with a readme file.
Raspberry Pi's Mechanical drawings
Summary
- Setup a brand new Raspberry Pi
- Java Virtual Machine
- How to build and run
- Developing on the Raspberry Pi, or Developing for the Raspberry Pi ?
- Raspberry Pi, a possible thing of the Internet of Things...
- Project list, growing
To get started as quickly as possible, and not only for this project, from scratch.
The goal here is to get ready with the minimal configuration you will be able to use to clone a git repository and start working on it.
Typically, you will need to have the minimal git tools and the right compilers. The code contained in the repo(s) will be responsible for
downloading the right dependencies at build time (gradle
is definitely good at that).
-
Install Raspbian (not NOOBS) as explained at https://www.raspberrypi.org/learning/software-guide/quickstart/, and burn your SD card
- Depending on the OS you burn the SD card from, the procedure varies. Well documented in the link above.
-
Boot on the Raspberry with the new SD card, USB keyboard and HDMI screen attached to it (if this is an old RPi, use a USB WiFi dongle too)
- It should boot to the Graphical Desktop.
-
Connect to your local network
-
Use RPi-Config (from the Desktop GUI, Menu > Preferences > Raspberry Pi Configuration) to:
- enable needed interfaces (ssh, serial, spi, i2c, VNC, etc)
ssh
andVNC
will allow remote access to your Raspberry Pi, the others depend on the projects you want to work on.- This can be modified or reverted at any time.
- setup config (keyboard, locale, etc)
- change pswd, hostname
- for the hostname, you might need to go a Terminal, reach
sudo raspi-config
, and useNetwork > Hostname
.
- for the hostname, you might need to go a Terminal, reach
- enable needed interfaces (ssh, serial, spi, i2c, VNC, etc)
-
Reboot (and now, you can use
ssh
if it has been enabled above) and reconnect -
From a terminal, run the following commands:
$ sudo apt-get update
$ sudo apt-get install vim
- setup your
.bashrc
as needed, adding for example lines like
alias ll="ls -lisah"
- recent Raspbian releases come with a development environment that includes
- JRE & JDK
- git
- python
- C Compiler (gcc, g++)
# Optional: sudo apt-get install -y curl git build-essential default-jdk
# Optional too, to install nodejs and npm:
$ sudo su -
root# curl -sL https://deb.nodesource.com/setup_9.x | bash -
root# exit
$ sudo apt-get install -y nodejs
screen
is nice to have too:
$ sudo apt-get install screen
$ screen -version
- make sure what you might need is installed, by typing:
$ java -version
$ javac -version
$ git --version
$ python --version
$ python3 --version
$ gcc -v
$ node -v
$ npm -v
- some utilities, to make sure they are present, type:
$ which scp
$ which curl
$ which wget
-
You can use VNC (if enabled in the config above)
- Run
vncserver
from a terminal, and useVNC Viewer
from another machine to connect.
- Run
-
You may also remove unwanted software, just in case you don't need them:
$ sudo apt-get purge wolfram-engine
(that one's worth keeping, though)$ sudo apt-get purge minecraft-pi
$ sudo apt-get purge sonic-pi
$ sudo apt-get purge libreoffice*
$ sudo apt-get clean
$ sudo apt-get autoremove
-
If you need AI and Deep Learning (Anaconda, Jupyter notebooks, TensorFlow, Keras), follow this link.
- or type:
$ wget https://repo.anaconda.com/archive/Anaconda3-5.3.0-Linux-x86_64.sh
- Anaconda on Raspberry Pi
- Jupyter Notebooks on Raspberry Pi
- Start Jupyter Notebooks by typing
jupyter notebook [--allow-root] --ip 0.0.0.0 --no-browser
- Then the command to use to reach Jupyter would show up in the console.
- Start Jupyter Notebooks by typing
- Note: Training a Neural Network is a very demanding operation, that requires computing resources not granted on a Raspberry Pi. Installing Keras on a Raspberry Pi might not be relevant. OpenCV, though, would be an option to consider. Google it ;).
- Jupyter Notebooks were originally developed for Python, but they're now also available for pretty much any language that comes with a REPL (Read Execute Print Loop), like Java (9+), Scala, NodeJS, ...
- Docker
$ curl -sSL https://get.docker.com | sh
- Go
$ wget https://dl.google.com/go/go1.9.2.linux-armv6l.tar.gz
$ sudo tar -C /usr/local -xzf go1.9.2.linux-armv6l.tar.gz
$ export PATH=$PATH:/usr/local/go/bin
$ go version
go version go1.9.2 linux/arm
- dep - Package manager for Go
$ go get -u github.com/golang/dep/cmd/dep
$ sudo cp ~/go/bin/dep /usr/local/bin/
$ dep version
dep:
version : devel
build date :
git hash :
go version : go1.9.2
go compiler : gc
platform : linux/arm
- Fing CLI, nice to have.
- Make sure you use the
Fing CLI
for your system,dpkg --print-architecture
will tell you what to choose,lscpu
too. - To know your architecture:
uname -m
,lscpu
AMRv7l
is 32 bits,ARMv8
is 64 bits
file /lib/systemd/systemd
,getconf LONG_BIT
- Make sure you use the
It's easy, and convenient. See here, or here.
To connect to a Raspberry Pi Zero, all you need is a USB cable A-to-microB.
Some other devices can be nice to have:
- USB to TTL Serial Cable - Debug / Console Cable for Raspberry Pi
- Zero Stem for Pi Zero 1.3 and Pi Zero W 1.1
- Adafruit PiUART - USB Console and Power Add-on for Raspberry Pi
Once your RPi is connected through a USB connection, after configuring it as explained, you can use ssh
as follow:
$ ssh pi@raspberrypi.local
where raspberrypi
is the hostname
of the Raspberry. No wireless connection or IP address is required.
See https://snapcraft.io/install/cdrom/raspbian
sudo apt update
sudo apt install snapd
sudo reboot
sudo snap install core
sudo snap install [--edge] cdrom
Your Raspberry Pi can be turned into an Access Point, this means that it generates its own network, so you can connect to it from other devices (other Raspberry Pis, laptops, tablets, smart-phones, ESP8266, etc). It can be appropriate when there is no network in the area you are in, for example when sailing in the middle of the ocean, kayaking in a remote place, hiking in the boonies, etc.
Setting up the Raspberry Pi to be an access point is well documented on the Adafruit website. This one is also useful.
And this too.
As we said above, to enable hostapd
to have your Raspberry Pi acting as a WiFi hotspot, you can follow
those good instructions from the Adafruit website.
Also take a look at that one.
Warning: Since Raspbian's Stretch release, a lot of things have changed for the network config. See here.
>>> Skip to the next section if you run Stretch or later (as I am). Consider the Ethernet option ;)
The thing is that when the Raspberry Pi becomes a WiFi hotspot, you cannot use it to access the Internet, cannot use apt-get install
, cannot use
git pull origin master
, etc, that can rapidly become quite frustrating.
Now, for development purpose, you may very well need to have an Access Point and an Internet access (i.e. access to your local or wide area network).
For that, you need 2 WiFi adapters (yes, you could also use an Ethernet connection, which is a no brainer, we talk about WiFi here). Recent Raspberry Pis are WiFi-enabled, you just need a WiFi dongle, that would fit on a USB port. On older Raspberry Pis (not WiFi-enabled), you need 2 USB dongles.
The Raspberry Pi 3 and the Zero W already have one embedded WiFi port, I just added another one, the small USB WiFi dongle I used to use
on the other Raspberry Pis.
This one becomes named wlan1
. All I had to do was to modify /etc/network/interfaces
:
# interfaces(5) file used by ifup(8) and ifdown(8)
# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'
# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d
auto lo
iface lo inet loopback
iface eth0 inet manual
allow-hotplug wlan0
iface wlan0 inet static
address 192.168.42.1
netmask 255.255.255.0
#iface wlan0 inet manual
# wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
allow-hotplug wlan1
iface wlan1 inet dhcp
wpa-ssid "ATT856"
wpa-psk "<your network passphrase>"
See the 4 lines at the bottom of the file, that's it!
Note: above,
192.168.42.1
will be the address of your hotspot, aka gateway. Feel free to change it to anything else, like192.168.127.1
... If that was the case, you also need to make sure that the entry you've added in/etc/dhcp/dhcpd.conf
matches this address range:
subnet 192.168.127.0 netmask 255.255.255.0 {
range 192.168.127.10 192.168.127.50;
option broadcast-address 192.168.127.255;
option routers 192.168.127.1;
default-lease-time: 600;
max-lease-time: 7200;
option domain-name "local-pi";
option domain-name-servers 8.8.8.8 8.8.4.4;
}
The lines to pay attention to are the ones with a 127
in it...
Note: you might also want to modify the file
/etc/dhcpcd.conf
, add the following lines:
interface wlan0
static ip_address=192.168.127.1/24
# static ip6_address=fd51:42f8:caae:d92e::ff/64
static routers=192.168.127.1
static domain_name_servers=192.168.127.1
Now, when the wlan1
is plugged in, this Raspberry Pi is a WiFi hotspot, and has Internet access.
This means that when you are on a Raspberry Pi with two WiFi adapters (the Raspberry Pi 3 with an extra dongle, where you do you developments from for example), you
have two WiFi interfaces, wlan0
and wlan1
.
When the same SD card runs on a Raspberry Pi with only one WiFi adapter (the Raspberry Pi Zero W you use to do some logging, when kayaking in the boonies for example),
you have only one WiFi interface wlan0
, and the Raspberry Pi is a hotspot generating its own network, as defined by you in /etc/hostapd/hostapd.conf
.
Note: In some cases, I was not able to have
hostapd
to start at boot time... It was working fine from the command line though. I've cheated by putting anhostapd /etc/hostapd/hostapd.conf &
in/etc/rc.local
. It's not elegant, but it works.
Now you're ready to rock!
Note:
Java code is compiled into class
files, that run on a Java Virtual Machine (JVM
). Java is not the only language that runs a JVM
, this project also contains some small samples of
other JVM-aware languages, invoking and using the features of this project.
Those samples include Scala, Groovy, Kotlin..., and the list is not closed!
See in the OtherJVMLanguages directory, there is more about that.
Note:
This project uses gradle
and git
. Gradle
will be installed automatically if it is not present on your system,
it uses the gradle wrapper (gradlew
).
To have a first idea of the structure of the project, use
$ ./gradlew projects [--info]
Sub-projects may have dependencies.
$ cd Project-Trunk/REST-clients/REST-assembler
$ ../../../gradlew dependencies [--info]
Git
is usually installed on Linux and Mac, but not on all versions of Windows. On Windows, you need to install the git bash shell
, and run in it the commands mentioned in this document.
Recent versions of Windows (like Windows 10) seem to come with a git command available in a Terminal. But this forward-slash/back-slash story
remains in your way, I have not tested it.
To build it, clone this project (this repo), make sure the script named gradlew
is executable, and execute gradlew
.
Note: If you wish to access serial ports, a good library (beside PI4J) is
librxtx
:sudo apt-get install librxtx-java
Prompt> git clone https://github.com/OlivierLD/raspberry-coffee.git
Prompt> chmod +x gradlew # if needed
Prompt> ./gradlew [--daemon | --no-daemon] build [--info] -x test
Note: On small-memory boards, use
--no-daemon
, like in:./gradlew --no-daemon clean build --info
If you see a message like
VM is only supported on ARMv7+ VFP
, you probably need to downgrade your JDK (and JRE) from 11 to 8.
You are expecting an end like that one:
BUILD SUCCESSFUL in 55s
97 actionable tasks: 17 executed, 80 up-to-date
Prompt>
See the gradle
web-site for info about Gradle.
We will also be using the shadowJar
gradle plugin is several projects.
This plugin is aggregating the required classes and all their dependencies into a single archive, called a fat Jar
. This simplifies the syntax of the classpath
.
Typically, this operation will be run like this:
Prompt> cd RESTNavServer
Prompt> ../gradlew build --info
Prompt> ../gradlew clean shadowJar [--info]
The expected archive will be produced in the local build/libs
directory.
Note: On small machines (like Raspberry Pi Zero), you might want to exclude the Scala compilation (too demanding) on some modules:
$ ../gradlew clean shadowJar -x :AstroComputer:compileScala
Important : If
JAVA_HOME
is not set at the system level, you can set it inset.gradle.env
and execute it before runninggradlew
:
Prompt> ../set.gradle.env.sh
Note: If you are behind a firewall, you need a proxy. Mention it in all the files named
gradle.propetries
, and in all thebuild.gradle
scripts, uncomment the following two lines:
// ant.setproxy(proxyhost: "$proxyHost", proxyport: "$proxyPort") //, proxyuser="user", proxypassword="password")
// compileJava.dependsOn(tellMeProxy)
Or you can also set it at runtime:
Prompt> ../gradlew clean shadowJar -Dhttp.proxyHost=www-proxy.domain.com -Dhttp.proxyPost=80 -Dhttps.proxyHost=www-proxy.domain.com -Dhttps.proxyPost=80
To write code, the simplest editor is enough. I have used vi
for ages, mostly because this was the only one available, but also because it is indeed good enough.
vi
(and vim
) is (are) available on the Raspberry Pi, nano
too, graphical editors like gedit
, geany
are even easier to use, on a grahical desktop.
All the code provided here can be built from Gradle (all gradle scripts are provided), on the Raspberry Pi itself. The Raspberry Pi is self-sufficient, if this is all you have, nothing is preventing you from accessing all the features presented here.
But let us be honest, Integrated Development Environments (IDE) are quite cool. In my opinion, IntelliJ leads the pack, and Eclipse, JDeveloper, NetBeans follow. Cloud9 provides amazing features, on-line. Smaller ones like GreenFoot, BlueJ are also options to consider.
Those two last ones might be able to run on a Raspberry Pi, but forget about the others..., they use way too much RAM.
The features they provide definitely increase productivity, and when you use them, you learn as you code. Code-insight, auto-completion
and similar features are here to help. And I'm not even talking about the remote debugging features they provide as well.
Several IDEs are also providing remote development features, through SSH. That means that you run an IDE on a laptop, powerful enough, and the code you write
sits on the Raspberry Pi. This could also be very appealing.
So, as the Raspberry Pi is not the only machine on my desk, I develop on a laptop using IntelliJ (with several GigaBytes of RAM, like 8, 16, ...), and I use scp
to transfer the code to (and possibly from) the Raspberry Pi.
Worst case scenario, I do a git push
from the development machine, and a git pull
from the Raspberry Pi.
I found it actually faster and more efficient than developing directly on the Raspberry Pi.
The Java Virtual Machine (JVM) implements the Java Platform Debugging Architecture (JPDA). This allows remote debugging. In other words, you run the code on the Raspberry Pi, but you debug it (set breakpoints, introspect variable values, etc) on another machine (the one where the IDE runs). This is specially useful when the code interacts with sensors and other devices that are not supported from the laptop. This will make your life considerably easier than if you used another language missing it (like Python, C, and many others). It uses TCP between the debugger and the debuggee.
- The Raspberry Pi is a fully featured Linux computer, which can - as such - connect to the Internet.
- The Raspberry Pi has a General Purpose Input Output (GPIO) interface that allows it to drive all kind of electronic components, from a simple LED to a complex robot, and including all kind of sensors (GPS, light resistors, pressure sensors, temperature sensors, all kinds!). None of the above is new. Connecting to the Internet does not impress anyone anymore. Driving a robot, modern kitchens are full of robots, cars are loaded with electronic components... But what if we put those two together, with the Raspberry Pi sitting in between. Then, we can drive a robot over the Internet. And this is not that usual (yet).
The snippets provided in this project are here to help in this kind of context. Some will use the network aspect of the story, some others will interact with electronic components. The two aspects should be easy to bridge, that is the goal. If that was not the case, please let me know (email address of the left side).
Several projects are featured here:
- Basic GPIO interaction
- Two Light Emitting Diodes (LEDs)
- Use the Raspberry Pi to turn LEDs on and off, through email (with doc)
- Read Serial Port (with doc)
- Read and parse NMEA Data from a GPS (with doc)
- Read analog data with an Analog Digital Converter (ADC). (with doc, with node.js and WebSocket)
- Drive servos using the PCA9685. (with doc).
- Drive servos using the PCA9685, over the Internet, with an Android client option. (with doc).
- Use the LSM303. (I2C compass & accelerometer, with doc).
- Use the BMP180. (I2C temperature and pressure sensor, with doc).
- Use the BMP183. (SPI temperature and pressure sensor, with doc).
- Use a relay, through email. (with doc).
- Use a relay, through HTTP. (with doc).
- Use a seven-segment display. (with doc).
- Use the VCNL4000 (I2C proximity sensor).
- Use the TCS34725 (I2C color sensor, demo).
- Use the TSL2561 (I2C light sensor).
- Use the L3GD20 (I2C gyroscope, demo).
- Use the MCP4725 (I2C Digital to Analog Converter, demo).
- ... and more.
All the doc - with more details than here - can be reached from this page.
Yes, this is possible!
See this.
Tricky question... Thanks for scrolling down that far.
The languages you use depend a lot on what you expect from your computer.
If you live on the hardware/sensors side of the world, you might prefer Python, as it is a simple language, close to scripting. The programs you will write will not be bigger than a couple of thousand lines.
If you are a mathematician, developing AI models, again Python might be your friend, it is well structured (I know, it's not 100% true... Ping me for details), and close enough to your mind set. You don't need to learn what will give extra value to - say - the JVM languages.
Now, if you need to scale, if you need to run on small single board computers as well as on clouds of big machines,
then this is where JVM-based languages come on stage.
They also provide some remote-debugging features, you only have to see them once to love them.
Their consistency is also an asset, and you do not have to wait for the runtime to detect problems and errors (IDEs have made tremendous progresses in this area,
leveraging the potential of the JVM). Their structure allows you to write multi-million line programs (C
does it too, by the way).
This being said, choosing your favorite language does not necessary isolate you from the rest of the world.
All languages - or almost - understand HTTP and related technologies like REST (if yours does not, drop it).
Docker and similar technologies provide this container abstraction.
Nothing is preventing you from using as many languages, frameworks and techniques you want, all you need is to package your applications as HTTP/REST servers that can communicate with each others. Bundling those servers into Docker images gives you even more flexibility.
It is very easy to invoke Python from Java (JSR 223), but the overhead of invoking it as a script is not negligible, and there is no in-memory status or transient state, in this case.
HTTP/REST sounds much nicer. We will provide examples, Java pinging a Python server, and vice-versa.
For now: there is a skeleton/template for a Python HTTP REST Server in
http-tiny-server/src/main/python/http_server_skeleton.py
Same works also for Scala (JVM based language), NodeJS, ... whatever understands HTTP.
It does indeed open a lot of possibilities.
The common protocol is REST over HTTP (JSON - or XML - is also nice to have, to format the conveyed data).
Then it becomes what latin was in Europe in the middle-age: a common communication media.
Latin is not the only example of communication between people speaking different languages. The same must have happened in Arabic, Asian, and more communities, please don't get me wrong.
And if you do not know it yet, take a listen to what people speak in places like California: 95% of the people have an accent!
I like Java and related technologies.
You're welcome here, even if you don't!