Tag Archives: Raspberry Pi

Raspberry Pi LESSON 33: Booting to the Graphical User Interface

If you have been following along in these lessons, we have been operating from the terminal window and the Linux command line. You have learned that you can simply and efficiently do whatever you want from the terminal window. Raspberry Pi does, however have a graphical interface. In this tutorial we show you how to boot in the graphical interface, and then how to find your way around.

Raspberry Pi LESSON 32: Options for Analog Input on the Raspberry Pi

At this point we have learned how to write digital values to the GPIO pins, we have learned to simulate analog out using PWM, and we have learned how to do digital reads from the pins. If you are like me and came from the Arduino world, then you will likely be asking, “Now what about analog reads”. The arduino has pins A0-A5 that make quick and easy work of reading analog values from things like photometers, sensors and various other circuit elements.

The bottom line is, unfortunately, there are no analogous capabilities on the Raspberry Pi. There is no way to directly read analog voltages.

Some suggest incorporating various analog to digital converter chips into your circuits requiring analog reads. For me, my preferred solution is the simply add an Arduino to the Raspberry Pi circuit. There are many very small form factor versions of the Arduino. For example, the nano is very small, and there are some examples that are even smaller. Some of these small implementations can be found for under $10.

If you take this approach, then all you have to do is learn how to communicate between the Raspberry Pi and Arduino either over USB or over ethernet. I show you how to do both of these things in the Lesson series on this WEB site “Using Python with Arduino”. This shows how to communicate between python and arduino using the USB, using Ethernet, or using the Xbee radios. Since python runs on the Raspberry Pi, all the techniques taught in those lessons can be applied to the raspberry pi.

In our high altitude balloon instrumentation package, we actually run a raspberry pi that is controlling two arduino nano microcontrollers. The one arduino is controlling the 9-axis IMU, and the other arduino is running GPS, Temperature, Pressure, and other sensors. The raspberry pi and Arduinos communicate over a small onboard Ethernet switch. The system communicates back to the ground via 1 watt ubiquity bullet radios.

So, the Raspberry Pi should not be viewed as a replacement for the Arduino, it should be viewed as a complementary device that can work nicely alongside the Arduino.

Raspberry Pi LESSON 31: Making a Dimable LED with Python

In this lesson we are ready to bring together a lot of what we learned in earlier lessons. We will create dimable LEDs which will respond to two buttons. If one is pressed the LED will gradually grow dimmer. If the other is pressed, the LED will gradually grow brighter. This will require us to use our skills in using GPIO inputs, pullup resistors, GPIO outputs, and PWM.

For convenience we will use the same circuit we used in LESSON 30, shown below. Also, if you want to follow along with these lessons, you can buy the gear you need HERE.

Raspberry Pi LED Circuit
This Circuit Controls two LED from Push Buttons Using the Raspberry Pi

The objective of this circuit is that we want the LEDs to grow brighter each time the right button is pushed, and we want them to grow dimmer each time to left button is pushed.

The video above steps through and explains this code.

 

Raspberry Pi LESSON 30: Controlling LEDs from Push Buttons

In this lesson we will show how you can control LED’s from push buttons. In order to get started, you will want to expand the circuit we built in LESSON 29 to include two LEDs. The schematic below shows how you will want to hook things up (Also, remember you can see the Raspberry Pi pinout in LESSON 25). Also, as we have mentioned before, if you want to follow along with us in these lessons you can get a kit that has all the gear you need HERE.

Raspberry Pi LED Circuit
This Circuit Controls two LED from Push Buttons Using the Raspberry Pi

In the video lesson, we take you through the code step-by-step. We use the techniques learned in LESSON 29 to detect if a button has been pushed. We introduce two new variables, BS1 and BS2, so indicate the state of the LED’s. A BS1=False means the LED1 is off. A BS1=True means the LED is on. This concept allows us to determine whether we should turn the LED on or off when the button is pushed. Basically, we want to put it in the opposite state when a button is pushed. The code is below. The video shows how it works.

 

Raspberry Pi LESSON 29: Configuring GPIO Pins as Inputs

We are now ready to learn how to “read” values from the Raspberry Pi GPIO pins. In order to demonstrate this, we will show a simple example using buttons. If you ordered the Raspberry Pi kit we recommend, you already have everything you need, or you can pick your kit up HERE. To start with, you need to put together a simple circuit that connects two push buttons to your Raspberry Pi. Connect according to this schematic.

Raspberry Pi Buttons
Simple Circuit Connecting Two Push Buttons to the Raspberry Pi

Note that one leg of each button is connected to the ground rail on the breadboard, that is connected to the Pi ground at physical pin 6. Then we connect the left leg of the left button to physical pin 16, and the left leg of the right button to physical pin 12.

In order to read the state of these buttons, that is, whether they are being pressed or not, we need to write a python program. To begin with we must import GPIO library and specify that we want to

 Now we are ready to set the pin modes on the pins we are using. We are using pins 12 and 16. We will set up variables so that we can reference the pins by descriptive variables.

Note in our GPIO.setup commands, we are not just defining the pins as inputs, we are also activating pullup resistors with

With this command, the raspberry pi places a pullup resistor between the designated pin and the 3.3 V rail. This means that if we simply read the pin, we will read a “1”, “True”, or “High”, since the pin will see the rail through the pullup resistor. If we connect the pin to ground by pressing a button or switch, the pin will then read a “0”, “False” or “Low” because it will be a straight connection to ground, and as current flows through the pullup resistor, the 3.3 Volts will drop across the pullup resistor. Hence, the pin sees 0 volts.

The result is that with the pullup resistor activated, the pin will always report a “1” until something connects the pin to ground, and then it will read a “0”. This configuration should work for most things, but if you are getting unpredictable results which can result from electrical noise, then try using external pullup resistors.

 Now we are ready to read the values from the pins.

Notice that we read from the pin using the GPIO.input command. Also note that for reliable results you need to usually put a small delay in your code. This will help debounce the button, and will also give more stable results.

OK, so our final code is as follows:

This code will sit and monitor the buttons, and when one is pressed it will report that that button has been pressed.