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
Arduino for Kids

You're reading from   Arduino for Kids A cool guide to help kids develop robots and electronics

Arrow left icon
Product type Paperback
Published in Mar 2017
Publisher Packt
ISBN-13 9781785884818
Length 218 pages
Edition 1st Edition
Tools
Concepts
Arrow right icon
Authors (3):
Arrow left icon
Rishi Gaurav Bhatnagar Rishi Gaurav Bhatnagar
Author Profile Icon Rishi Gaurav Bhatnagar
Rishi Gaurav Bhatnagar
Priya Kuber Priya Kuber
Author Profile Icon Priya Kuber
Priya Kuber
Vijay Varada Vijay Varada
Author Profile Icon Vijay Varada
Vijay Varada
Arrow right icon
View More author details
Toc

Table of Contents (11) Chapters Close

Preface 1. The World around Us FREE CHAPTER 2. Systems and Logic 3. Components and Connections 4. The Magic Wand 5. Hello World! 6. Safety Box 7. Make a Friend 8. Save Energy 9. High 5! 10. Plant, Meet Arduino!

Let there be light!


Now we have everything we need to know to start building our project, let's start by writing the code:

int sensorPin = A0;            // select the input pin for the ldr 
unsigned int sensorValue = 0;  // variable to store the value coming from the ldr 
 
void setup() 
{ 
  pinMode(13, OUTPUT); 
  //Start Serial port 
  Serial.begin(9600);        // start serial for output - for testing 
} 
 
void loop() 
{ 
  // read the value from the ldr: 
  sensorValue = analogRead(sensorPin);      
  if(sensorValue<400) 
       digitalWrite(13, HIGH);   // set the LED on 
  else digitalWrite(13, LOW);   // set the LED off 
   
} 

We start by storing the pin numbers in variables, so that it doesn't become confusing, and then initialize our LED pins for output.

The code consists of a if statement that checks the value of sensorValue. If the values stored in it is less than 400, meaning that...

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 $19.99/month. Cancel anytime