Setting up a Raspberry Pi (1st generation) A+

What’s in this post?

How to set up a Raspberry Pi 1 A+, specifically:

  • from a Windows laptop
  • using a USB tether to an Android phone to install additional packages
  • to get it working with an Explorer Hat Pro

Motivation

I’m fairly new to the world of the Raspberry Pi. I’ve recently joined Ely Makers and am part of the group that will be entering a vehicle for Pi Wars 2020.

We agreed to use a Raspberry Pi A+ for this robot, since most of the team entered last year and already had one. However, this meant a Raspberry Pi 3 A+ … being new to this, I accidentally bought a first-generation Raspberry Pi A+ instead for building my version.

I’ll probably need to upgrade at some stage (e.g. to get the camera module port), but I’d like to see how far I can get with the hardware I now have.

Whereas the more modern, third-gen board has both Wireless LAN and bluetooth, making it fairly easy to install additional software over the Internet, the board I have does not.

There is lots of information online about different approaches. As usual with these (now occasional) blog posts, I want to bring together what actually worked for me to hopefully save someone else from having to spend quite so long on trial and error.

Initial set-up

I formatted an SD card and installed NOOBS onto it, following the instructions here.

I connected a 5V power supply connected to the micro-USB, a USB keyboard connected to the USB port on the Pi and a long HDMI cable connecting the Pi to my TV. With the SD card now in the Pi, I booted it and allowed NOOBS to install Raspbian.

Up to this stage, everything was fine. The process is fairly straightforward, and the setup instructions worked as described.

So what’s the problem?

The Raspberry Pi A+, first generation, is on the minimal side. It’s designed to draw very little power, which is great for a robot, but that also means it has very few ports and devices. In particular, it has no WiFi or bluetooth connectivity, and just a single USB port.

Installing any software that isn’t part of the default Raspbian image is not straightforward. Here’s what I did.

Setting up the Raspberry Pi to be headless

The default Raspbian set-up gives you a nice graphical interface. For my purposes I don’t need that: the card is going to be on a robot, reading sensors and controlling motors. All of that can be done via the command line.

Making the Pi headless

In a terminal:

sudo raspi-config

Using the menu I set it to boot to “console text”, and, under Advanced Options, enabled SSH.

I then rebooted the Pi.

What actually worked for me for connectivity

On the Pi, I did the following (based on an answer here):

Edit /etc/dhcpcd.conf, adding these lines at the end (note that this is changing the Pi’s local network address to 192.168.42.42):

interface usb0
static ip_address=192.168.42.42/24
static routers=192.168.42.1
static domain_name_servers=8.8.8.8

Edit /etc/network/interfaces, adding these lines at the end:

auto usb0
iface usb0 inet dhcp

Then ran this command:

ifup usb0

Connecting to the pi from my Android phone

Now it was possible to unplug the USB keyboard from the Pi, connect a USB/micro-USB cable between the Pi and my Samsung Galaxy S7, and connect to the Pi from my Phone.

I installed the following software on my phone:

From there the process was straightforward:

  1. Make sure the phone and Pi are connected by the USB cable, and that the phone is connected to the Internet via Wi-Fi or data.

  2. Turn on USB tethering on the phone.

  3. Start VX ConnectBot on the phone, and set up a SSH connection to 192.168.42.42.

  4. Enter the default password raspberry when prompted on the phone.

Updating and adding software

Now I was able, via the console on my phone, to update the software and install the packages I was missing.

Updating what’s already there

Check the Internet access it working: $ ping www.google.com (the Ctrl+C, which is an example of where the Hacker’s keyboard is useful!)

Make sure everything is up to date:

$ sudo apt-get update
$ sudo apt-get upgrade

Adding software for the Explorer Pro hat

Possibly this is already bundled with Raspbian, so doesn’t need Internet connectivity:

$ sudo apt-get install python3-explorerhat

Now to test the Explorer Hat Pro. It hasn’t been connected up to this point.

Powered off the Pi (sudo shutdown now).

Disconnected the power.

Fitted the hat onto the pins.

Reconnected the power.

Turned on USB tethering again on my phone (it turns itself off each time it loses connection to the Pi).

Notes

I found that when the explorer hat was connected, the USB keyboard I was using wouldn’t work. I guess there was not enough power for both.