-
Notifications
You must be signed in to change notification settings - Fork 1
/
_Project_Callicar MotorenV-3-2.js
226 lines (215 loc) · 4.37 KB
/
_Project_Callicar MotorenV-3-2.js
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
let directionRaw = 2000
let speedRaw = 2000
let directionA = 2000
let directionB = 2000
let speed = 2000
let alarm = false
let show_led = [-1, -1]
let last_get = 0
let wait = true
// Schwellenwert für keine Bewegung
const THRESHOLD_NO_MOVE = 30 // Default: 30 - Scope:0-100
// Offset für die Lenkung
//Gegenwirkung für schiefes Geradeausfahren: Positiv ist nach rechts, negativ ist nach links
const OFFSET_DIRECTION = 80 // Default: 0 - Scope:(-1023)-1023
// Loading Screen
let running = false
basic.setLedColor(Colors.Red)
basic.showLeds(`
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
`)
// Einstellungen für die Drahtlosverbindung
radio.setGroup(0)
radio.setTransmitPower(7) // Max=7
basic.showLeds(`
. . . . .
. . . . .
. . . . .
. . . . .
. . . . .
`)
// Fernsteuerung
radio.onDataPacketReceived( ({ receivedString: m, receivedNumber: d }) => {
if (!running && !wait) {
Run()
}
let dataInt = d
let mode = m
if (dataInt != dataInt) {
// dataInt is NaN
dataInt = 0
}
if (mode == "alarm") {
// Alarm wurde geschickt -> Alarm an
alarm = true
}
if (mode == "direction") {
// Neue Lenkungsdaten wurden geschickt - update
directionRaw = dataInt
dataInt = dataInt + OFFSET_DIRECTION
if (dataInt > 1023) {
dataInt = 1023
} else if (dataInt < -1023) {
dataInt = -1023
}
let direction = pins.map(
dataInt,
-1023,
1023,
-10,
10
)
directionA = 10
directionB = 10
if (direction > 0) {
// rechts - MotorA weniger
directionA = pins.map(
direction,
0,
10,
10,
0
)
}
if (direction < 0) {
// links - MotorB weniger
directionB = pins.map(
direction,
-10,
0,
0,
10
)
}
}
if (mode == "speed") {
// Neue Geschwindigkeitsdaten wurden geschickt - update
speedRaw = dataInt
speed = pins.map(
dataInt,
1023,
-1023,
0,
10
)
}
last_get = input.runningTime() // Zeit in Millisekunden seit Programmstart
})
// Motoren
basic.forever(() => {
if (last_get + 1500 < input.runningTime()) {
// Wenn seit 1.5 Sekunden keine neue Info --> Funkabbruch Stop!
Stop()
}
if (running && speed != 2000 && directionA != 2000 && directionB != 2000) {
let motorA = speed * directionA
let motorB = speed * directionB
if (motorA > THRESHOLD_NO_MOVE) {
motors.dualMotorPower(Motor.A, motorA)
} else {
motors.dualMotorPower(Motor.A, 0)
}
if (motorB > THRESHOLD_NO_MOVE) {
motors.dualMotorPower(Motor.B, motorB)
} else {
motors.dualMotorPower(Motor.B, 0)
}
}
})
// Buttons und LED-Matrix
basic.forever(() => {
if (input.buttonIsPressed(Button.B)) {
// Unterbreche alles und warte auf ButtonA
Stop()
wait = true
}
if (input.buttonIsPressed(Button.A) && wait) {
Run()
}
if (running && directionRaw != 2000 && speedRaw != 2000) {
// Setze neue LED-Koordinate
led.unplot(show_led[0], show_led[1])
show_led[0] = pins.map(
directionRaw,
-1023,
1023,
-1,
5
)
if (show_led[0] == -1) {
show_led[0] = 0
}
if (show_led[0] == 5) {
show_led[0] = 4
}
show_led[1] = pins.map(
speedRaw,
1023,
-1023,
5,
-1
)
if (show_led[1] == -1) {
show_led[1] = 0
}
if (show_led[1] == 5) {
show_led[1] = 4
}
led.plot(show_led[0], show_led[1])
}
})
// Hupe
basic.forever(() => {
if (alarm) {
alarm = false
// music.playTone(262, music.beat(BeatFraction.Quarter))
// Der Lautsprecher hängt am Motortreiber mit an, deswegen geht das hier nicht.
// Siehe: https://calliope-mini.github.io/assets/v10/img/Calliope%20mini%20rev1.3-2.png
basic.setLedColor(Colors.Purple)
basic.showLeds(`
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
`)
basic.pause(500)
if (!alarm) {
// Ende Hupe
basic.showLeds(`
. . . . .
. . . . .
. . . . .
. . . . .
. . . . .
`)
RGBLedClear()
}
}
})
// Stoppe alles und RGB Rot
function Stop() {
running = false
motors.dualMotorPower(Motor.A, 0)
motors.dualMotorPower(Motor.B, 0)
led.unplot(show_led[0], show_led[1])
basic.setLedColor(Colors.Red)
}
// Starte (wieder)
function Run() {
running = true
RGBLedClear()
}
// Setze die RGB-LED wieder auf den Ursprung zurück
function RGBLedClear() {
if (running == false) {
basic.setLedColor(Colors.Red)
} else {
basic.setLedColor(0)
}
}
wait = false