SCHOOLS THAT PREPARE THE STORY
1- Murat ÇELEBİ - Çarşamba Science High School
2- Ayşe ARSLAN - Sabiha Gökçen Vocational and Technical Anatolian High School
3- Durmuş Ali ÖZ - Çarşamba Science High School
4- Ayla ALTUNDAĞ - Çorlu Mesleki ve Teknik Anadolu Lisesi
5- Khayala SALMANOVA - Kelbecer, 108 nömrəli tam orta məktəb

SCHOOLS THAT PREPARE THE STORY
6- Erkan ERDOĞAN - Çarşamba Science High School
7- Hani Alshomarry - Sheikh Hussein Bridge Primary School for Boys
8- Beyhan SOLGUN- Mimar Sinan Mesleki ve Teknik Anadolu Lisesi
9- Özlem ÇELİK - Private Çerkezköy Organized Industrial Zone Vocational and Technical Anatolian High School
LED Lighting Application with Arduino

LED Lighting Application with Arduino

Burning Two Leds with Arduino

Burning Two Leds with Arduino

Walking Light Application with Arduino

Walking Light Application with Arduino
void setup() {
for (int i=2; i<10; i++)
{
pinMode (i, OUTPUT);
}
}
void loop() {
for (int i=2; i<10; i++)
{
digitalWrite( i,HIGH);
delay(100);
digitalWrite(i,LOW);
delay(100);
}
for (int i=9; i>2; i--)
{
digitalWrite( i,HIGH);
delay(100);
digitalWrite(i,LOW);
delay(100);
}
}
LED Lighting Application with Arduino Button

LED Lighting Application with Arduino Button

LED Lighting Application with Arduino Button
void setup() {
pinMode(3,OUTPUT);
pinMode(4,INPUT);
}
void loop() {
if(digitalRead (4)==LOW)
{
digitalWrite (3, HIGH);
}
else {
digitalWrite(3,LOW);
}
}
Led Flashıng Wıth Potentıometer

Led Flashıng Wıth Potentıometer
void setup() {
pinMode(3,OUTPUT);
Serial.begin(9600);
}
void loop() {
Serial.println (analogRead(A0));
analogWrite(3,analogRead(A0)/4);
}
Sound Adjustment Wıth Potentıometer

Sound Adjustment Wıth Potentıometer
void setup() {
pinMode(3,OUTPUT);
Serial.begin(9600);
}
void loop() {
Serial.println (analogRead(A0));
analogWrite(3,analogRead(A0)/4);
if (analogRead (A0) ==1023){
tone(5,250);
delay(500);
tone(5,450);
delay(500);
}
else{
noTone(5);
}
}
Using Servo Motor with Potentiometer

Using Servo Motor with Potentiometer
#include <Servo.h>
Servo servoMotor;
int potPin = 0;
int val;
void setup() {
servoMotor.attach(9);
}
void loop() {
val = analogRead (potPin);
val = map (val,0,1023,0,180);
servoMotor.write(val);
delay(15);
}
LED Lighting by Reading Value with LDR

LED Lighting by Reading Value with LDR
void setup() {
Serial.begin (9600);
pinMode(3,OUTPUT);
}
void loop() {
if (analogRead(A0)<600){
digitalWrite(3,HIGH);
}
else
{
digitalWrite(3,LOW);
}
Serial.println (analogRead(A0));
}
Led Lıghtıng Wıth Ultrasonıc Sensor

Led Lıghtıng Wıth Ultrasonıc Sensor
int trigPin =6;
int echoPin = 7;
void setup() {
pinMode (trigPin, OUTPUT);
pinMode (echoPin, INPUT);
pinMode (9, OUTPUT);
Serial.begin (9600);
}
void loop() {
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin,LOW);
long sure = pulseIn (echoPin , HIGH);
long uzaklik = sure/29.1/2;
if (uzaklik>200){
uzaklik = 200;
}
Led Lıghtıng Wıth Ultrasonıc Sensor
if (uzaklik<15) {
digitalWrite(9,HIGH);
}
else {
digitalWrite(9,LOW);
}
}
"Writing" Text to the LCD Screen

LED Application with Arduino LDR Photo Resistor
#include <LiquidCrystal_I2C.h>
#include <Wire.h>
LiquidCrystal_I2C lcd (0x27, 2, 1, 0, 4, 5, 6, 7, 3 , POSITIVE);
LED Application with Arduino LDR Photo Resistor
void setup() {
lcd.begin (16,2);
lcd.print ("SAMSUN");
}
void loop() {
}
Wrıttıng To The Parallel Lcd Screen

Wrıttıng To The Parallel Lcd Screen
#include <LiquidCrystal.h>
LiquidCrystal lcd(8,9,4,5,6,7);
void setup() {
lcd.begin(16,2);
lcd.clear();
lcd.print ("Merhaba ");
lcd.setCursor (0,1);
lcd.print ("KODLASAM "); }
void loop() { }
Usıng The Keypad

Usıng The Keypad
#include <Keypad.h>
const byte ROWS = 4;
const byte COLS = 4;
char hexaKeys[ROWS][COLS] = {
{'1','2','3','A'},
{'4','5','6','B'},
{'7','8','9','C'},
{'*','0','#','D'}
};
Usıng The Keypad
byte rowPins[ROWS] = {9, 8, 7, 6};
byte colPins[COLS] = {5, 4, 3, 2};
Keypad customKeypad = Keypad( makeKeymap(hexaKeys), rowPins, colPins, ROWS, COLS);
void setup() {
Serial.begin(9600);
}
Usıng The Keypad
void loop() {
char customKey = customKeypad.getKey();
if (customKey){
Serial.println(customKey);
}
}
Led On And Off Wıth Infrared Remote Controller

Led On And Off Wıth Infrared Remote Controller
#include <IRremote.h>
int IR_PIN = 11;
IRrecv IRAlici(IR_PIN);
decode_results sonuc;
byte LED1 = 6;
void setup()
{
pinMode(LED1, OUTPUT);
- Full access to our public library
- Save favorite books
- Interact with authors
SCHOOLS THAT PREPARE THE STORY
1- Murat ÇELEBİ - Çarşamba Science High School
2- Ayşe ARSLAN - Sabiha Gökçen Vocational and Technical Anatolian High School
3- Durmuş Ali ÖZ - Çarşamba Science High School
4- Ayla ALTUNDAĞ - Çorlu Mesleki ve Teknik Anadolu Lisesi
5- Khayala SALMANOVA - Kelbecer, 108 nömrəli tam orta məktəb

SCHOOLS THAT PREPARE THE STORY
6- Erkan ERDOĞAN - Çarşamba Science High School
7- Hani Alshomarry - Sheikh Hussein Bridge Primary School for Boys
8- Beyhan SOLGUN- Mimar Sinan Mesleki ve Teknik Anadolu Lisesi
9- Özlem ÇELİK - Private Çerkezköy Organized Industrial Zone Vocational and Technical Anatolian High School
LED Lighting Application with Arduino

LED Lighting Application with Arduino

- < BEGINNING
- END >
-
DOWNLOAD
-
LIKE
-
COMMENT()
-
SHARE
-
SAVE
-
BUY THIS BOOK
(from $10.19+) -
BUY THIS BOOK
(from $10.19+) - DOWNLOAD
- LIKE
- COMMENT ()
- SHARE
- SAVE
- Report
-
BUY
-
LIKE
-
COMMENT()
-
SHARE
- Excessive Violence
- Harassment
- Offensive Pictures
- Spelling & Grammar Errors
- Unfinished
- Other Problem
COMMENTS
Click 'X' to report any negative comments. Thanks!