ALLAH (cc)'IN EN GÃœZEL Ä°SÄ°MLERÄ° (ESMA-ÃœL HÃœSNA)
el - KUDDÛS

Her türlü kötülük ve eksiklikten uzak, temiz, kutsal, yüce ve saygın olan.

     ANASAYFA    |   Ben Kimim?      Ä°Ã§kiden sakınınız; Çünkü o her kötülüğün anasıdır. - Hz.Muhammed (sav)

Arduino Bluetooth Kontrollü Araba Yapımı

Arduino Bluetooth Kontrollü Araba Yapımı
 + Yazıyı Büyüt    - Yazıyı Küçült           

Arduino ile bluetooth kontrollü araba yapımından bahsedeceÄŸim. AÅŸağıda arabanın devresi ve kodları mevcuttur. Hazır 2 tekerli araba kiti alıp bunun üzerinden bluetooth kontrollü arabayı tamamladım. 

Burada yaptığımız arabada temel işlevler yapılmaktadır. İleri, geri, sol, sağ ve hız ayarı gibi... Diğer işlevleri kendiniz koda ekleyerek kullanabilirsiniz.

Burada cep telefonu ya da tablet üzerinden kontrol edebilmek için play storedan "Arduino Bluetooth Araba Kontrol" uygulamasını kullanabilirsiniz.

Malzemeler:

  • Arduino Uno
  • L298N Motor Sürücü
  • 2 Tekerli Araç Kiti
  • HC05 Blutooth Modül
  • Pil Yuvası ve Pil (Ben 8 pil kullandım)

 

BT Kontrollü Araba

 

const int motorA1  = 5;  // L298N'in IN3 GiriÅŸi
const int motorA2  = 6;  // L298N'in IN1 GiriÅŸi
const int motorB1  = 9; // L298N'in IN2 GiriÅŸi
const int motorB2  = 10;  // L298N'in IN4 GiriÅŸi
int durum; 
int Hiz=255;
 
void setup() {
    pinMode(motorA1, OUTPUT);
    pinMode(motorA2, OUTPUT);
    pinMode(motorB1, OUTPUT);
    pinMode(motorB2, OUTPUT);   
    Serial.begin(9600);
}
 
void loop() {
    if(Serial.available() > 0){     
      durum = Serial.read();   
    }
  
  // Uygulamadan ayarlanabilen 3 hız seviyesi.(DeÄŸerler 0-255 arası)
   if (durum == '1'){
      Hiz=50;}
    else if (durum == '2'){
      Hiz=150;}
    else if (durum == '3'){
      Hiz=255;}
         
  /******************** Ä°leri *************************/
    if (durum == 'y') {
      analogWrite(motorA1, Hiz); analogWrite(motorA2, 0);
        analogWrite(motorB1, Hiz);      analogWrite(motorB2, 0); 
    }
  /****************** Ä°leri SaÄŸ *********************/
    else if (durum == 'k') {
      analogWrite(motorA1,Hiz ); analogWrite(motorA2, 0);  
        analogWrite(motorB1, 100);    analogWrite(motorB2, 0); 
    }
  /****************** Ä°leri Sol ********************/
    else if (durum == 'm') {
        analogWrite(motorA1, 100); analogWrite(motorA2, 0); 
        analogWrite(motorB1, Hiz);      analogWrite(motorB2, 0); 
    }
  /****************** Geri ****************************/
    else if (durum == 'a') {
      analogWrite(motorA1, 0);   analogWrite(motorA2, Hiz); 
        analogWrite(motorB1, 0);   analogWrite(motorB2, Hiz); 
    }
  /******************* Geri SaÄŸ **********************/
    else if (durum == 'f') {
      analogWrite(motorA1, 0);   analogWrite(motorA2, 100); 
        analogWrite(motorB1, 0); analogWrite(motorB2, Hiz); 
    }
  /******************* Geri Sol *********************/
    else if (durum == 'z') {
      analogWrite(motorA1, 0);   analogWrite(motorA2, Hiz); 
        analogWrite(motorB1, 0);   analogWrite(motorB2, 100); 
    }
  /********************** SaÄŸ *************************/
    else if (durum == 's') {
      analogWrite(motorA1, Hiz);   analogWrite(motorA2, 0); 
        analogWrite(motorB1, 0); analogWrite(motorB2, 0); 
    }
  /*********************** Sol  *************************/
    else if (durum == 'l') {
      analogWrite(motorA1, 0);   analogWrite(motorA2, 0); 
        analogWrite(motorB1, Hiz);   analogWrite(motorB2, 0);     
    }
  /********************* Dur ************************/
    else if (durum == 'd'){
        analogWrite(motorA1, 0);  analogWrite(motorA2, 0); 
        analogWrite(motorB1, 0);  analogWrite(motorB2, 0);
    }  
}
 
( 42921 ) kez okundu     -     14.05.2018    Tweetle     
Arduino Bluetooth Kontrollü Araba Yapımı. RC Controller, Arduino, bluetooth kontrol, bt kontrollü araba, arduino bluetooth kontrol, robot kontrol, l298n
Ziyaretçi Yorumları
( 19 ) Yorum
Tümünü Göster
eren - kocaeli - 04.01.2024 21.53
     abi uygulamayı güncellermisin eski cihazlar için uygun deÄŸil diyor

----- Mustafa KARSLI ---->
Herhangi bir bt kontrol uygulamasını kullanabilirsiniz. Sadece uygulamadaki yön için atanan karakterleri kodda değiştirmelisiniz.

Eren - kocaeli - 04.01.2024 21.37
     Hc-06 ile oluyomu

----- Mustafa KARSLI ---->
Olur

Ömer Nazif Yırtıcı - Ankara - 15.07.2023 20.38
     Hocam. tüm devreler çalışıyor. Kodları deÄŸiÅŸik bordsları kullanarak yüklüyorum ama araba hareket etmiyor. Kodları yüklerken kopyala yapıştırdan sonra bords ports.da hangi sıralamayı izlemeliyim neleri seçerek devam etmeliyim. TeÅŸekkür ederim.

Furkan Çelik - İstanbul - 08.06.2022 18.47
     Hocam Merhabalar Sizin aynısını yapıyorum fakat araç çalışmıyor bluetooth baÄŸlanıyor fakat araç hareket etmiyor yardımcı olursanız sevinirim

recep muharrem - sakarya - 18.04.2021 10.45
     abi ben senin dediÄŸin her ÅŸeyi yaptım çalışmıyor arduino yanmış olabilirmi

Arda Kocaman - Bolu - 05.09.2020 22.28
     Hocam devreyi yaptım kodları yükledim uygulamadan kontrol etmeye çalıştığımda bir tuÅŸa basıyorum rastgele yerlere gidiyor bluetooth baÄŸlantısı kesiliyor pil sayısı arttırğımda ise bluetooth çalışmıyor ne yapazağım

Mehmet Akif - Sakarya - 31.08.2020 23.56
     abi herÅŸey tamam devre hazır kodlar yüklendi felan ama tx yanarken rx yanmıyo kabloların yerini deÄŸiÅŸtirincede tam tersi bu normalmi vede tabiki çalışmıyo dah ayeni baÅŸladım pekmi bilgim yok inÅŸ cevap verirsin

M.METEHAN BOZDEMÄ°R - BURSA - 01.06.2020 01.55
     Robotu yapıp kodları yükledim uygulamadan kontrol etmeye baÅŸlıyorum bir düğmeye basıyorum sonra kendi kafasına göre hareket ediyor öbür tuÅŸlara basıyorum ama algılamıyor kendi kafasına göre hareket ediyor sonra bluetooth baÄŸlantısı kopuyor ve hareket etmeye devam ediyor durdurmak için kendi üzerindeki düğmeye basmak zorunda kalıyorum. Sorunu nasıl düzeltebileceÄŸimi söyler misiniz?

----- Mustafa KARSLI ---->
Pilin gücü yetmiyordur. Pilin gücünü arttırınız

Esvet Can - Ankara - 22.05.2020 12.09
     Hocam kodu yüklerken rxd ve txd cikartayimmi iyi günler

----- Mustafa KARSLI ---->
Hayırlı günler. kodu yüklerken bluetooth bağlantısını kesmeniz gerekir.

UÄžUR SÄ°VRÄ° - antalya - 01.05.2020 15.52
     s.aleykum hocam Arduino:1.8.12 (Windows Store 1.8.33.0) (Windows 10), Kart:"Arduino Uno" Çalışmanız programın 2368 bayt (7 %) saklama alanını kullandı. Maksimum 32256 bayt. Global deÄŸiÅŸkenler belleÄŸin 188 byte kadarını (9%) kullanıyor. Yerel deÄŸiÅŸkenler için 1860 byte yer kalıyor. En fazla 2048 byte kullanılabilir. avrdude: stk500_paged_write(): (a) protocol error, expect=0x14, resp=0xc4 avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: stk500_cmd(): programmer is out of sync avrdude: loadaddr(): (b) protocol error, expect=0x14, resp=0x00 avrdude: stk500_paged_load(): (a) protocol error, expect=0x14, resp=0x10 avrdude: stk500_cmd(): protocol error avr_read(): error reading address 0x00da read operation not supported for memory "flash" avrdude: failed to read all of flash memory, rc=-2 avrdude: stk500_disable(): protocol error, expect=0x14, resp=0x0c avrdude: stk500_disable(): protocol error, expect=0x14, resp=0x0c This report would have more information with "Show verbose output during compilation" option enabled in File -> Preferences. bu hatayı alıyorum cözümü varmıdır ÅŸimdiden teÅŸekkür ederim

DoÄŸan - istanbul - 01.04.2020 20.32
     hocam ben baÄŸlantıları yaptım ancak araba hareket etmiyor.öğretmenim ben arduino kursunda yapmıştık ama ÅŸimdi o kodla da çalıştıramıyorum.orda ena ve enb ye de kablo baÄŸlamıştık.

ABDURRAHMAN - ANKARA - 04.03.2020 18.49
     PEKÄ° HOCAM UNO YERÄ°NE MEGA KULANA BÄ°LRMÄ°YÄ°Z

Emirhan - Ä°STANBUL - 18.01.2020 00.11
     Yalnıza "DC motor"lar hareket etmiyor ne yapmam gerek?

Emirhan - Ä°STANBUL - 17.01.2020 23.55
     Ä°lker kardeÅŸim hatanı bir tek "rx0"da bulunan kabloyu çektikten sonra düzelecektir. Yani kodu yükler iken "rx0" boÅŸ kalacak, kod yüklendikten sonra ise "rx0"a doÄŸru olan kabloyu yerleÅŸtireceksin..

ilker öztürk - tekirdağ - 11.12.2019 23.49
     Arduino:1.8.10 (Windows 10), Kart:"Arduino Uno" Çalışmanız programın 2368 bayt (7 %) saklama alanını kullandı. Maksimum 32256 bayt. Global deÄŸiÅŸkenler belleÄŸin 188 byte kadarını (9%) kullanıyor. Yerel deÄŸiÅŸkenler için 1860 byte yer kalıyor. En fazla 2048 byte kullanılabilir. avrdude: stk500_recv(): programmer is not responding avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0xdd avrdude: stk500_recv(): programmer is not responding avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0xdd avrdude: stk500_recv(): programmer is not responding avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0xdd avrdude: stk500_recv(): programmer is not responding avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0xdd avrdude: stk500_recv(): programmer is not responding avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0xdd avrdude: stk500_recv(): programmer is not responding avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0xdd avrdude: stk500_recv(): programmer is not responding avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0xdd avrdude: stk500_recv(): programmer is not responding avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0xdd avrdude: stk500_recv(): programmer is not responding avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0xdd avrdude: stk500_recv(): programmer is not responding avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0xdd Karta yüklenirken sorun oluÅŸtu. Tavsiyeler için http://www.arduino.cc/en/Guide/Troubleshooting#upload adresine göz atabilirsiniz. This report would have more information with "Show verbose output during compilation" option enabled in File -> Preferences. hatalarnı alıyorum yardım edermisiniz

CAKAL CEYRANCI - ANKARA - 27.06.2019 00.01
     HOCAM BUNU MOTOR Sürücüsü OLMADAN TRANSÄ°STÖR Ä°LE YAPABÄ°LÄ°RMÄ°YÄ°Z EGER OLUYORSA BANA MAÄ°L ADRESÄ°MDEN YOLLAYABÄ°LÄ°RMÄ°SÄ°NÄ°Z SEMSINI VE KODLARINI SAYGILARIMLA

Emirhan - Izmir - 15.05.2019 00.38
     Kodlar hep yanlış çıkıyor Abi nasıl yaparım?

çağlayan - hatay - 16.04.2019 19.18
     selamın aleykum. komut lar çalışmıyor acaba ben mı yanlış yapıyorum anlayamadım. yenı baÅŸlayan bırıyım yardımcı olursanız sevınırım. ayrıyeten arduıno yu programlmam gerekiyor muydu ılk bastan? acil donus yaparsanız cok mutlu olurum kolay gelsın

ahmet - Bartın - 10.12.2018 15.17
     abi bizim harÅŸey tamam ama sinyalde tx den geliyo ama motorlar gitmiyoo yardıımmm

Yorum Ekle
Güvenliğiniz için iP adresiniz kaydedilmektedir. Herhangi bir Hukuki Dava ile karşılaşmamak için hakaret içeren sözler ve argo kelimeler kullanmayınız.
Ä°sim
:
Yorum
:
En fazla 400 karakter
Åžehir
:
E-Posta
:
E-Posta adresi Yayınlanmaz
(Güvenliğiniz için ip adresiniz (3.141.198.146) kaydedilecektir)
  Yeni Dersleri Takip etmek istiyorum. Adresime E-Posta Gelmesini Onaylıyorum.
BENZER YAZILAR
Android
Arduino
Bilgisayar Ağları
biliMKurdu
BiliÅŸim Teknolojileri
C Sharp
Çalışmalar
Donanım
Evde Deney
Fireworks
Flash - Action Script 3
Gezdik ve Gördük
HTML
JavaScript
KiÅŸisel GeliÅŸim
Okul Öncesi Etkinlik
PHP
Projeler
Raspberry Pi
Scratch
Silverlight
Şanlı Tarihimiz
Yarışmalar
Yazılarım
  Zamanlanmış Duyuru/Ödev Bulunmamaktadır...  
Allah'ım! Beni iyilik işledikleri zaman sevinen ve kötülük yaptıkları zaman bağışlanma dileyen kullarından eyle.

İbn Mâce, "Edeb", 57
Sosyal Medya Hesabım Bulunmamaktadır. Bu nedenle başka platformlarda paylaşımım bulunmamaktadır.
Kişisel resim ve yazıları kullanmak yasaktır. Bunun dışındaki dersleri İsim ve Kaynak göstermek şartıyla kullanmak serbesttir.
 Aktif ziyaretçi : 6
 Bugün : 85
 Toplam : 2665426
Mustafa KARSLI - BiliÅŸim Teknolojileri Öğretmeni © 2008 - 2024  
Site Haritası

 

6