Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Learn Arduino Prototyping in 10 days

You're reading from   Learn Arduino Prototyping in 10 days Build it, test it, learn, try again!

Arrow left icon
Product type Paperback
Published in Jun 2017
Publisher Packt
ISBN-13 9781788290685
Length 288 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Kallol Bosu Roy Choudhuri Kallol Bosu Roy Choudhuri
Author Profile Icon Kallol Bosu Roy Choudhuri
Kallol Bosu Roy Choudhuri
Arrow right icon
View More author details
Toc

Table of Contents (13) Chapters Close

Preface 1. Boot Camp FREE CHAPTER 2. The Arduino Platform 3. Day 1 - Building a Simple Prototype 4. Day 2 - Interfacing with Sensors 5. Day 3 - Building a Compound Device 6. Day 4 - Building a Standalone Device 7. Day 5 - Using Actuators 8. Day 6 - Using AC Powered Components 9. Day 7 - The World of Transmitters, Receivers, and Transceivers 10. Day 8 - Short Range Wireless Communications 11. Day 9 - Long-Range Wireless Communications 12. Day 10 - The Internet of Things

GSM module sketch

In this section, we will write the basic Arduino sketch for interacting with the GSM module. The following sketch has been written to dial a phone number as well as to send a text message via SMS.

The following sketch can be downloaded from the online location mentioned in the Chapter 1, Boot Camp of this book:

 
// Include the software serial library
// Alternately you can directly use the hardware serial
// via (Arduino's digital pins D0 and D1)
#include <SoftwareSerial.h>

// Define the two pins that will be connected
// between the Arduino Uno and the GSM module

// D2 is connected to RXD pin of the GSM module
// So D2 will be simulated as the Tx pin on the Arduino
#define SIM800_RXD 2

// D4 is connected to TXD pin of the GSM module
// So D4 will be simulated as the Rx pin on the Arduino
#define SIM800_TXD 4

// Define the object for using the...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime