Keyestudio Yeni Başlayanlar için Sensör Seti – K1

1,190.25

Stokta yok

Gönderim & Kargo

  • Hızlı Kargo

Siparişiniz en kısa sürede kapınızda.

  • Güvenilir Alışveriş

%100 orijinal ürün, güvenli ödeme garantisiyle.

Ürün Açıklaması

Keyestudio Yeni Başlayanlar için Arduino Sensör Kiti – K1

thumb

Bileşenler Listesi

No. Product Name Quantity Picture
1 Resistor 330R 10 thumb
2 Resistor 1K 10 thumb
3 Resistor 10K 10 thumb
4 LED Red 5 thumb
5 LED Yellow 5 thumb
6 LED Green 5 thumb
7 Potentiometer 10K 2 thumb
8 Passive buzzer 1 thumb
9 Active buzzer 1 thumb
10 Button 4 thumb
11 Button cap Blue 2 thumb
12 Button cap Yellow 2 thumb
13 830-hole Breadboard 3 thumb
14 Jumper wire 1*65 thumb
15 M-F Dupont wire 20cm 10 thumb
16 Resistor color code card 1 thumb
17 KEYESTUDIO UNO 1 thumb
18 USB cable 0.5m 1 thumb
19 Digital white LED module 1 thumb
20 Passive buzzer module 1 thumb
21 Knock sensor module 1 thumb
22 Tilt sensor module 1 thumb
23 18B20 temperature sensor module 1 thumb
24 IR Receiver Module 1 thumb
25 IR Transmitter Module 1 thumb
26 Capacitive Touch Sensor module 1 thumb
27 MQ-3 alcohol sensor module 1 thumb
28 Obstacle avoidance sensor module 1 thumb
29 Component box 1 thumb

Proje Detayları

Proje 1: Hello World

Tanıtım

Yeni başlayanlara gelince, basit bir şeyle başlayacağız. Bunda
projesinde, yalnızca bir Arduino ve bir USB kablosuna ihtiyacınız var.
Dünya! “Deneyi. Bu, Arduino ve PC’nizin bir iletişim testidir,
  Ayrıca Arduino’yu ilk denemeniz için bir primer projesi
dünya!

Donanım gerekli Arduino Kart *1
USB cable *1

Örnek program Arduino için sürücü yükledikten sonra Arduino yazılımını açalım ve
Arduino’nun “Merhaba Dünya!” senin altında
talimat. Tabii ki, Arduino’nun kodunu sürekli olarak
  echo “Merhaba Dünya!” talimat olmadan. Basit bir If () ifadesi
talimat hile yapmak. Yerleşik LED pim 13’e bağlıyken,
Arduino bir talimat aldığında önce LED’in yanıp sönmesini söyleyebilir ve
  sonra “Merhaba Dünya!” yazdırın.

int val;//define variable val
int ledpin=13;// define digital interface 13
void setup()
{
  Serial.begin(9600);// set the baud rate at 9600 to match the software set up. When connected to a specific device, (e.g. bluetooth), the baud rate needs to be the same with it.
  pinMode(ledpin,OUTPUT);// initialize digital pin 13 as output. When using I/O ports on an Arduino, this kind of set up is always needed.
}
void loop()
{
  val=Serial.read();// read the instruction or character from PC to Arduino, and assign them to Val.
  if(val=='R')// determine if the instruction or character received is "R”.
  {  // if it’s "R”,    
    digitalWrite(ledpin,HIGH);// set the LED on digital pin 13 on. 
    delay(500);
digitalWrite(ledpin,LOW);// set the LED on digital pin 13 off.   
 delay(500);
    Serial.println("Hello World!");// display"Hello World!”string.
  }
}

Yorumlar