Hallo Zusammen,
mit dem untenstehenden Video möchte ich euch eine Anleitung mitgeben wie man Garagentore in Bewegung setzt und mit einer Infrarot Fernbedienung und dem Arduino ansteuert.
Ich habe das für meine Boxen auf der 1/87 Rennstrecke realisiert.
Viel Spaß beim Nachbauen.
Diesen Code habe ich für den Arduino verwendet:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// 1: 16753245
// 2: 16736925
// 3: 16769565
// 4: 16720605
// 5: 16712445
// 6: 16761405
// 7: 16769055
// 8: 16754775
// 9: 16748655
// 0: 16750695
// hoch 16718055
// runter 16730805
// links 16716015
// rechts 16734885
// ok 16726215
// Dauerbetrieb 4294967295
#include <IRremote.h>
int motor1_A=10;
int motor1_B=9;
int motor2_A=6;
int motor2_B=5;
int Motorauswahl = 0; // Variable zur Motorauswahl
int RECV_PIN = 11;
int Richtung = 0;
IRrecv irrecv(RECV_PIN);
decode_results results;
void setup(){
pinMode(motor1_A,OUTPUT);
pinMode(motor1_B,OUTPUT);
pinMode(motor2_A,OUTPUT);
pinMode(motor2_B,OUTPUT);
Serial.begin(9600);
irrecv.enableIRIn();
pinMode (13, OUTPUT);
pinMode (12, OUTPUT);
}
void loop(){
if (irrecv.decode(&results)) {
Serial.println(results.value, DEC);
if (results.value == 16753245) { //Taste 1
Motorauswahl = 1;
digitalWrite (12, HIGH);
digitalWrite (13, LOW);
}
if (results.value == 16736925) { //Taste 2
Motorauswahl = 2;
digitalWrite (12, LOW);
digitalWrite (13, HIGH);
}
if (results.value == 16769565) { //Taste 3
Motorauswahl = 3;
digitalWrite (12, HIGH);
digitalWrite (13, HIGH);
}
if (results.value == 16720605) { //Taste 4
Motorauswahl = 4;
digitalWrite (12, HIGH);
digitalWrite (13, HIGH);
}
if (results.value == 16769055) { //Taste 7
digitalWrite (12, HIGH);
digitalWrite (13, HIGH);
}
if (results.value == 16748655) { //Taste 9
digitalWrite (12, HIGH);
digitalWrite (13, HIGH);
}
if (results.value == 16754775) { //Taste 8
digitalWrite (12, LOW);
digitalWrite (13, LOW);
}
if (results.value == 16718055) { //hoch
Richtung = 1;
}
if (results.value == 16730805) { //runter
Richtung = 2;
}
if (results.value == 16726215) { //ok
Richtung = 3;
}
switch (Richtung) {
case 1:
if (Motorauswahl == 1) {
// Tor 1 hoch
digitalWrite(motor1_A,LOW); // Motor dreht links rum
analogWrite(motor1_B,200);
}
if (Motorauswahl == 2) {
// Tor 2 hoch
digitalWrite(motor2_A,LOW); // Motor dreht links rum
analogWrite(motor2_B,200);
}
break;
case 2:
if (Motorauswahl == 1) {
// Tor 1 runter
analogWrite(motor1_A,200); // Motor dreht rechts rum
digitalWrite(motor1_B,LOW);
}
if (Motorauswahl == 2) {
Serial.println("Motor2");
// Tor 2 runter
analogWrite(motor2_A,200); // Motor dreht rechts rum
digitalWrite(motor2_B,LOW);
}
break;
case 3:
digitalWrite(motor1_A,LOW); // Motoren aus
digitalWrite(motor1_B,LOW);
digitalWrite(motor2_A,LOW); // Motoren aus
digitalWrite(motor2_B,LOW);
break;
}
irrecv.resume();
}
}
Viele Grüße aus dem Norden
Björn