| Напряжение | 6V |
| Ток | 1.5A |
| Крутящий момент | 10 Nm |
| Скорость вращения | 100 rpm |
| Вес | 200g |
VCC → 5V GND → GND SIG → 2
const int motorPin = 2;
void setup() {
pinMode(motorPin, OUTPUT);
}
void loop() {
digitalWrite(motorPin, HIGH);
delay(1000);
digitalWrite(motorPin, LOW);
delay(1000);
}
Отзывов пока нет. Будьте первым!