Tag Archives: Tutorial

LESSON 32: Understanding Arduino Functions

So far we have written programs as a long string of code, pretty much all in the void loop. As we begin to need to develop more complicated code, putting all the programming in the void loop can become unmanageable. It is easy to lose track of what we are doing. For more complicated programs, we want to break the problem up into manageable chunks of code. This is called modular program. We develop small modules that do specific tasks, and then our void loop simply calls these modules. The modules are called “Functions” in arduino.

Lets consider an example. Lets say we want to write an arduino program that prompts the user for the number of grades he has. Then it averages the grades, prints the grades and then prints the average. The following program would do this job, with all the code in the void loop:

You can see that the void loop is getting pretty complicated, and it would be easy to begin to lose track of what is going on. If we think about what we are trying to do, lets try to break it down more logically. These are the logical tasks we need to do:

Input Grades

Average Grades

Print Grades and Average

I think that is the logical way to break the program down. Hence, we need three modules or functions, which we could define as follows:

inputGrades();

avGrades();

printGrades();

We could call these three functions in the void loop. then down below the void loop we would need to define, or teach arduino what each of these functions do. In effect, the code in the example above is put down in three logical blocks, which we call functions. Notice that when we do that, the functions must be defined AFTER the void loop. That means it is done after the closing curly bracket for the void loop. Using functions, we can rewrite the program above as follows:

Notice now that the void loop is very simple to understand, since each function is logically named. Also, if we look down at the function definition, it is clear what each chunk of code does. In this example, we are using global variables, so each function, and the void loop are all working with the same set of variables. In future lessons we will look at the use of local variables, and then how that would affect the structure of our functions.

LESSON 29: The Dos and Don’ts of Arduino Software Interrupts

This is a follow on to lesson 28, to address some of the questions that come up. It is important to understand that all functions are not well suited for use with software interrupts. You must be mindful of timing. Key to being successful with Arduino Software Interrupts is the function called needs to be small and very fast. When the interrupt calls the function, you need to get in and out of that function as quick as you can. Hence, you should avoid doing printing in the function called by the interrupt. You should try and avoid working with serial data, because things can get lost if you are not careful. Also, you should know that you can not use a delay in the function.

For most beginner programmers, interrupts should just be used to call short functions, with minimal lines of code, that can be run quickly.

Keys to a Successful Engineering Career LESSON 19: How to Properly Take Problems to Your Boss

One of the worst things that can happen to your engineering career is to develop the reputation of being a whiner. Hence, you want to avoid complaining as much as possible. There are, however, times that important issues need to be taken to your management. This should be done in a manner that does not make you look like a whiner. In this video, we describe the right way to take issues to the boss.

Keys to a Successful Engineering Career LESSON 18: How to Resolve Conflict

There will always be conflict in any organization, so a valuable skill that an engineer can have is the ability to effectively resolve conflicts. This is a particularly important skill for those who would like to move into management. In this video we show you some important techniques for effectively dealing with conflict in an organization.

Keys to a Successful Engineering Career LESSON 17: How to Deal With Difficult People

There are difficult people in all walks of life, but it seems like you run into a lot of them in an Engineering Career.  Hence, your career will be improved if you learn to work with people who are hard to work with. If you are the guy that can work with anyone, your career will have a distinct advantage. This video shows your tips and tricks to deal with difficult people.