Schrittmotor 28BYJ-48 mit ULN2003 Treiberplatine: Unterschied zwischen den Versionen
Zeile 49: | Zeile 49: | ||
! style="font-weight: bold;" | Farbe | ! style="font-weight: bold;" | Farbe | ||
|- | |- | ||
| 1 ||Ausgang || | | 1 ||Ausgang || Rot | ||
|- | |- | ||
| 2 || Masse (GND) || | | 2 || Masse (GND) || Orange | ||
|- | |- | ||
| 3 || Versorgungsspannung VCC || | | 3 || Versorgungsspannung VCC || Gelb | ||
|- | |- | ||
| | | 4 || Versorgungsspannung VCC || Pink | ||
|- | |- | ||
| | | 5 || Versorgungsspannung VCC || Blau | ||
|} | |} | ||
== Schrittsequenz == | == Schrittsequenz == | ||
* The sequence of control signals for 4 control wires is as follows: | * The sequence of control signals for 4 control wires is as follows: |
Version vom 20. November 2023, 15:38 Uhr
Autoren: Prof. Dr.-Ing. Schneider
Einleitung
Bei diesem Schrittmotor handelt es sich um einen Schrittmotor, der sich speziell für kleine Anwendungen mit dem Arduino-Board eignet. Die Besonderheit liegt darin, dass er ohne eine externe Spannungsversorgung betrieben werden kann. Der Motor entwickelt dabei ein relativ hohes Drehmoment. Dies wird durch ein Getriebe realisiert, welches innerhalb des Metallgehäuses vor dem eigentlichen Schrittmotor verbaut wurde. Dadurch wird es in dieser kompakten Bauweise überhaupt erst möglich, dass sich eine ganze Umdrehung der Antriebswelle auf 2048 Einzelschritte aufteilen lässt. Ein kleiner daraus resultierender Nachteil ist die langsame maximale Drehgeschwindigkeit.
Der Schrittmotor wird an die Motorsteuerungsplatine (ULN2003 Modul) angeschlossen. Diese versorgt den Motor mit ausreichend elektrischer Energie, damit die Leistung nicht von den digitalen Pins des Arduino-Boards aufgebracht werden muss. Die Steuerungsplatine gibt es in zwei Versionen, bei denen die seitlich angebrachten Pins entweder nach oben oder nach unten aus der Platine herausragen. Die Anschlussbelegung ist jedoch gleich.
Technische Daten
Anzahl Phasen | 4 |
Getriebe | 1/64 |
Schritte pro Umdrehung | 2048 |
Schrittweite | 5,625 · 1/64 |
Drehmoment | 34.3 Nm |
Nennspannung | 5 V |
Stromaufnahme pro Spule | 100 mA |
Spulenwiderstand | 50 Ω |
Lautstärke | <40 dB |
Kabellänge | 24 cm |
Leehrlaufgeschwindigkeit | 17 UPM |
Außendurchmesser Motorgehäuse | 28 mm |
Abmessungen | ⌀28 mm x 19 mm (ohne Schaft) |
Gewicht | 28 mm |
Pinbelegung
Pin | Belegung | Farbe |
---|---|---|
1 | Ausgang | Rot |
2 | Masse (GND) | Orange |
3 | Versorgungsspannung VCC | Gelb |
4 | Versorgungsspannung VCC | Pink |
5 | Versorgungsspannung VCC | Blau |
Schrittsequenz
* The sequence of control signals for 4 control wires is as follows: * * Step C0 C1 C2 C3 * 1 1 0 1 0 * 2 0 1 1 0 * 3 0 1 0 1 * 4 1 0 0 1
Schritt | IN1 | IN2 | IN3 | IN4 |
---|---|---|---|---|
1 | 1 | 0 | 1 | 0 |
2 | 0 | 1 | 1 | 0 |
3 | 0 | 1 | 0 | 1 |
4 | 1 | 0 | 0 | 1 |
Stepper.h - Stepper library for Wiring/Arduino - Version 1.1.0 |
// ensure this library description is only included once
#ifndef Stepper_h
#define Stepper_h
// library interface description
class Stepper {
public:
// constructors:
Stepper(int number_of_steps, int motor_pin_1, int motor_pin_2);
Stepper(int number_of_steps, int motor_pin_1, int motor_pin_2,
int motor_pin_3, int motor_pin_4);
Stepper(int number_of_steps, int motor_pin_1, int motor_pin_2,
int motor_pin_3, int motor_pin_4,
int motor_pin_5);
// speed setter method:
void setSpeed(long whatSpeed);
// mover method:
void step(int number_of_steps);
int version(void);
private:
void stepMotor(int this_step);
int direction; // Direction of rotation
unsigned long step_delay; // delay between steps, in ms, based on speed
int number_of_steps; // total number of steps this motor can take
int pin_count; // how many pins are in use.
int step_number; // which step the motor is on
// motor pin numbers:
int motor_pin_1;
int motor_pin_2;
int motor_pin_3;
int motor_pin_4;
int motor_pin_5; // Only 5 phase motor
unsigned long last_step_time; // time stamp in us of when the last step was taken
};
#endif
|
Demo
Videos
Hilfreiche Links
- Funduino Anleitung
- Arduino.cc: Stepper
- Arduino Reference: Stepper
- Moving the 28BYJ-48 Stepper Motor
- [1]
- [2]