Book Image

Internet of Things with Arduino Blueprints

By : Pradeeka Seneviratne
Book Image

Internet of Things with Arduino Blueprints

By: Pradeeka Seneviratne

Overview of this book

Table of Contents (15 chapters)
Internet of Things with Arduino Blueprints
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Connecting the TTL Serial Camera with Arduino and Ethernet Shield


Stack up your Arduino Ethernet Shield with the Arduino board as you did in the previous chapters and perform the following steps:

  1. Connect your TTL Serial Camera module with the Arduino and Ethernet Shield as shown in the diagram below. Here, we will use two Arduino digital pins and a Software Serial port to communicate with the camera.

    The Adafruit VC0706 Serial JPEG Camera is connected with Arduino Ethernet Shield

  2. Connect camera TX to Arduino digital pin 2 and camera RX to Arduino digital pin 3.

  3. Connect camera GND to Arduino GND and camera 5V to Arduino 5V.

  4. Now insert a Micro SD card into the SD card connector on the Ethernet shield. Remember the Arduino communicates with the SD card using digital pin 4.

  5. Download the Adafruit VC0706 camera library from GitHub by navigating to https://github.com/adafruit/Adafruit-VC0706-Serial-Camera-Library. After it has been downloaded, extract the ZIP file into your local drive.

  6. Next, rename the...