Проблемы с клоном Ардуино

РусланЛамер

✩✩✩✩✩✩✩
17 Сен 2018
1
0
Народ проблема срочная. Я нуб в электронике, только начинаю с ардуино работать.
Купил Клон ардуино нано от чип и дип называется БУЗИНА НАНО.

Пришел домой, скачал все по гайдам от Алекса. Прошивку не стал ставить китайскую т.к. консультанты сказали что это оригинальный чип.
Мне нужно поработать с сервоприводами, начал подключать все как надо, пины правильно выставил, каким то чудом первый скетч залился, дальше все. У меня работает сейчас привод по этому скетчу:


C++:
#include <Servo.h>
Servo servo1;
void setup() {
  servo1.attach(3);
}
void loop() {
  servo1.write(0);
  delay(1500);
  servo1.write(180);
  delay(1500);
}
а другие не загружаются и выдает такую ошибку:

C++:
Проблема загрузки в плату. Помощь по загрузке: http://www.arduino.cc/en/Guide/Troubleshooting#upload .

avrdude: Version 6.3-20171130
         Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/
         Copyright (c) 2007-2014 Joerg Wunsch
         System wide configuration file is "C:\Program Files (x86)\Arduino\hardware\tools\avr/etc/avrdude.conf"
         Using Port                    : COM3
         Using Programmer              : arduino
         Overriding Baud Rate          : 115200

avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0xcb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0xcb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0xcb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0xcb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0xcb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0xcb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0xcb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0xcb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0xcb
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0xcb
avrdude done.  Thank you.
Проблема загрузки в плату. Помощь по загрузке: http://www.arduino.cc/en/Guide/Troubleshooting#upload .
Что делать то ??
 

Вложения

Изменено: