You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.5 KiB
Plaintext
57 lines
1.5 KiB
Plaintext
15 years ago
|
/*
|
||
|
Conditionals - If statement
|
||
|
|
||
|
This example demonstrates the use of if() statements.
|
||
|
It reads the state of a potentiometer (an analog input) and turns on an LED
|
||
|
only if the LED goes above a certain threshold level. It prints the analog value
|
||
|
regardless of the level.
|
||
|
|
||
|
The circuit:
|
||
|
* potentiometer connected to analog pin 0.
|
||
|
Center pin of the potentiometer goes to the analog pin.
|
||
|
side pins of the potentiometer go to +5V and ground
|
||
|
* LED connected from digital pin 13 to ground
|
||
|
|
||
|
* Note: On most Arduino boards, there is already an LED on the board
|
||
|
connected to pin 13, so you don't need any extra components for this example.
|
||
|
|
||
|
created 17 Jan 2009
|
||
14 years ago
|
modified 4 Sep 2010
|
||
15 years ago
|
by Tom Igoe
|
||
14 years ago
|
|
||
|
This example code is in the public domain.
|
||
15 years ago
|
|
||
14 years ago
|
http://arduino.cc/en/Tutorial/IfStatement
|
||
15 years ago
|
|
||
|
*/
|
||
|
|
||
|
// These constants won't change:
|
||
14 years ago
|
const int analogPin = A0; // pin that the sensor is attached to
|
||
15 years ago
|
const int ledPin = 13; // pin that the LED is attached to
|
||
|
const int threshold = 400; // an arbitrary threshold level that's in the range of the analog input
|
||
|
|
||
|
void setup() {
|
||
|
// initialize the LED pin as an output:
|
||
|
pinMode(ledPin, OUTPUT);
|
||
|
// initialize serial communications:
|
||
|
Serial.begin(9600);
|
||
|
}
|
||
|
|
||
|
void loop() {
|
||
|
// read the value of the potentiometer:
|
||
|
int analogValue = analogRead(analogPin);
|
||
|
|
||
|
// if the analog value is high enough, turn on the LED:
|
||
|
if (analogValue > threshold) {
|
||
|
digitalWrite(ledPin, HIGH);
|
||
|
}
|
||
|
else {
|
||
|
digitalWrite(ledPin,LOW);
|
||
|
}
|
||
|
|
||
|
// print the analog value:
|
||
|
Serial.println(analogValue, DEC);
|
||
|
|
||
|
}
|
||
|
|