Book Image

Learning C for Arduino

By : Syed Omar Faruk Towaha
Book Image

Learning C for Arduino

By: Syed Omar Faruk Towaha

Overview of this book

This book will start with the fundamentals of C programming and programming topics, such data types, functions, decision making, program loops, pointers, and structures, with the help of an Arduino board. Then you will get acquainted with Arduino interactions with sensors, LEDs, and autonomous systems and setting up the Arduino environment. Moving on you will also learn how to work on the digital and analog I/O, establish serial communications with autonomous systems, and integrate with electronic devices. By the end of the book, you will be able to make basic projects such as LED cube and smart weather system that leverages C.
Table of Contents (17 chapters)
Learning C for Arduino
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Making a call using GSM module


Your Arduino and the GSM Shield are connected and powered up. First, open the Arduino IDE and import the SoftwareSerial.h library, as shown in the previous chapter, or go to the menu shown in the following image (Sketch | Include Library | SoftwareSerial):

You can also manually type the following line on the top of the setup() function:

#include <SoftwareSerial.h> 

Now, we will define the pins of the Arduino where TX and RX will be attached as follows:

SoftwareSerial GSMSerial(2, 3); //Pin 2 is our TX and 3 is the RX 

Here, GSMSerial() is a custom function which will be used later. You can name it anything you want. We passed two parameters into this function. The first parameter is for the TX pin and the second parameter is for the RX pin.

Let's print something on the Serial Monitor while the GSM Shield get ready to work. Then we will begin initializing the Shield by putting the baud rate inside our GSMSerial() object, as follows:

GSMSerial.begin...