Tag Archives: High School Science

Space Probe Instrument Package

I hope you all will stick with the Arduino lessons I am putting together. They will really lead to some pretty powerful things you can do.  Before too long, I will show you how to build an instrument package and send it to space. We have had two successful missions so far. The first one went to 90,000 feet, and the most recent one to 120,000 feet. Our instrument packages have live onboard telemetry and send dozens of channels of data back to the earth. On our last mission we maintained telemetry for over 70 miles. This video describes an overview of the electronics package and telemetry we designed and built for our space probe.

Here is some exciting footage from our mission as the space probe reached its maximum altitude.

Arduino Lesson 3: For Loops for Simple LED Circuit

In this lesson we will create a circuit and write arduino code to control two LED’s.

Two Diode Circuit

You can jump right to the video, or read through the tutorial.

In the earlier lessons we wrote our first programs and built our first circuit. At this time you should be getting comfortable with how the breadboard works and how to work with variables and digitalWrite commands in the arduino IDE (Integrated Development Environment). Now we are going to build a slightly more complicated circuit for controlling two LEDs. Since we want to control each one individually, you will need to have a separate arduino pin control each LED and each LED should have its own current limiting resistor (330 ohms). You should be able to sketch out your own circuit at this point. This is a diagram of the circuit we will be using. Yours does not have to be exactly like this, but it should have the same function.

LED Schematic
This circuit will allow you to independently control two Light Emitting Diodes from the arduino microcontroller

Notice that in this circuit, the shorter leg of both LED’s needs to be connected to ground. In order to accomplish this we run a wire from the ground pin on the arduino to the top row of the breadboard. This makes the top row “ground”. Now any device that needs to be grounded can just be connected to the top row, since that row of the breadboard is connected all the way across (See LESSON 1). Also note that both LED’s have their own 330 ohm current limiting resistor, and remember that the direction matters on diodes . . . be sure to put them in with the longer leg connected to the more positive part of the circuit . . . in this case, the longer leg should be connected to the resistor (since the resistor connects to the + voltage coming from the arduino pin).

When you get the circuit built, it should look something like this:

Arduino LED Circuit
Photograph of our Arduino Circuit for Controlling Two Diodes.

Now that your circuit is built, we are ready to do some programming.

Our objective in this exercise is to be able to independently control the LED’s.  We will want to blink the red one ten times in a row, and then blink the yellow one once.  A “blink” should be turning LED on, leaving it on for a quarter second, turning it off, and leaving it off for a quarter second. Then that sequence will be repeated. So, we will need to think about the variables we will need. We have two LED’s so we will need to declare two variables to indicate the pins that the LED’s are connected to. In the schematic we connected the red LED to pin 9 and the yellow LED to pin 10. Also, since we will be blinking two LED’s, we will need onTime and offTime variables for each LED.  You should go ahead and open your arduino IDE and set declare your variables. Think about what you are going to name your variables . . . you do not have to use the same names I use. My code looks like this:

Now that your variables are declared, what should you do next? That’s right! You need to work on your void setup(). In your void setup you will need to set your pinModes. Since you are using 2 arduino pins this time, you need to issue two pinMode commads as follows.

Things are moving along and we are now ready to do our main business in the void loop(). Remember our goal is to blink the Red LED ten times, and then blink the yellow LED one time.

 OK, now you are ready to run your code. If you did it correctly,  it should run, and blink the red LED ten times, and then blink the yellow LED one time. If it does not run correctly, you need to debug your code. If it does not work, it is because you made a mistake. Most of the time it is silly typos or forgetting to end lines with a semicolon. Check your work, and you will find your error. Sometimes it helps to have someone else look it over with you.

OK, hopefully you have your code and circuit working now. You can play around with the parameters, and you can see that you can make the LED’s do whatever you want them to.

Now imagine I asked you to make the red LED blink 25 times and then the yellow blink ten times. The problem becomes that it gets very tedious to continue to copy and paste the code, and it eventually becomes impossible to keep track of how many times you have pasted the code in. We need a better way of doing repetitive tasks, like blinking. Luckily there is what is called a “for loop” a for loop will repeat a clause, or a group of commands, or lines of code a specified number of times. The for loop looks like this:

 OK, there is lots going on with this new code, so lets break it down. First,  notice the open and close curly brackets. All of the code or command lines you put between the curly brackets will be the code that is executed in the for loop. You can put as much or as little code as you want in the for loop. Now lets look at the first line that actually initiates the for loop. Inside the parenthesis are the parameters or arguments that define the behavior of the loop. Notice first that we have introduced a new variable, j. Since we do not need this variable in other parts of the program, we make it a “local” variable. That is, we do not declare it at the top of the program, but declare it just when we use it. That is why we have “int j=1”. The int is declaring that we are going to use a new variable called j. Now j=1 is telling the loop to start with a value of j of 1. Then the j<=10 says to continue to loop as long as j is less than or equal to 10. Then after the next semicolon we have j=j+1. This tells the arduino that each time through the loop, increment j by 1. So, inside the parenthesis we are telling the arduino to start looping with j set equal to one, to continue to loop as long as j is less than or equal to 10,  and each time through the loop to add 1 to the value of j.

So, if we want to blink the red LED ten times, it becomes very easy using the following code:

Remember that our goal was to blink the red LED ten times and blink the yelow LED one time.  We need to add a little code so that the LED will blink yellow. This should be done AFTER the for loop.

 WOW, that is a huge improvement over our original code. The for loop makes it much easier to manage things. The one thing that I don’t like about what we did in the code above is that we looped to the constant value of ten. It would be better and smarter to declare a new variable at the top of the program, The new variable could be numRedBlinks. Then in the for loop we would loop until j<=numRedBlinks. Then at the top of the program we could set numRedBlinks to however many times we want the red led to blink.

OK, I have done lots of the work for you in the above example. Now, I want you to write a program where the yellow LED is also controlled inside a for loop. So, you would declare at the top of the program two new variables . . . numRedBlink and numYellowBlink. The program would have a for loop to blink the red LED numRedBlink times, and then blink the yellow LED numYellowBlink times.  Good Luck!

RESOURCES USED IN THIS LESSON:

Arduino Microcontroller: You can get a good deal on the arduino on Amazon. Arduinos are open source and many are cheap chinese knockoffs, so you want to make sure you get an “official” version, which you can at the link above.

Sparkfun Inventor’s Kit: While the bare arduino will get you started, I really suggest getting the Sparkfun Inventor Kit. The projects I will feature in this tutorial set will use the components in this kit, and it is probably cheaper to go ahead and get the kit than to buy the individual components as you go along. The kit is under $100 on Amazon.

From the Edge of Space

I want to whet your appetite a little today about the types of projects we will be covering in this blog. One of the things I love to do is send instrument packages to the edge of space. As this blog develops, I hope to be able to share with you lots of the technology, logistics and rules associated with this fascinating endeavor. For now, let me share a video from our last flight. Enjoy the serenity as our probe hovers at 120,000 feet. At this altitude, you can see the blackness of space and the curvature of the earth. The thin blue line is the earth’s atmosphere. Enjoy!