-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrobit.ts
522 lines (439 loc) · 13.4 KB
/
robit.ts
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
//% color=#0fbc11 icon="\uf013"
//% block="Robit"
namespace robit {
let line_follow_Left_Pin = DigitalPin.P3
let line_follow_Right_Pin = DigitalPin.P4
const PCA9685_ADDRESS = 0x40
const MODE1 = 0x00
const MODE2 = 0x01
const SUBADR1 = 0x02
const SUBADR2 = 0x03
const SUBADR3 = 0x04
const PRESCALE = 0xFE
const LED0_ON_L = 0x06
const LED0_ON_H = 0x07
const LED0_OFF_L = 0x08
const LED0_OFF_H = 0x09
const ALL_LED_ON_L = 0xFA
const ALL_LED_ON_H = 0xFB
const ALL_LED_OFF_L = 0xFC
const ALL_LED_OFF_H = 0xFD
const STP_CHA_L = 2047
const STP_CHA_H = 4095
const STP_CHB_L = 1
const STP_CHB_H = 2047
const STP_CHC_L = 1023
const STP_CHC_H = 3071
const STP_CHD_L = 3071
const STP_CHD_H = 1023
export enum Servos {
S0 = 0x01,
S1 = 0x02,
S2 = 0x03,
S3 = 0x04,
S4 = 0x05,
S5 = 0x06,
S6 = 0x07,
S7 = 0x08
}
export enum Motors {
//% block="M1"
M1 = 0x1,
//% block="M2"
M2 = 0x2,
//% block="M3"
M3 = 0x3,
//% block="M4"
M4 = 0x4
}
export enum Steppers {
STEP1 = 0x1,
STEP2 = 0x2
}
export enum Jpin {
//% block="J3 (P1,P2)"
J3 = 3,
//% block="J1 (P13,P14)"
J1 = 1,
//% block="J2 (P15,P16)"
J2 = 2,
//% block="J4 (P3,P4)"
J4 = 4
}
export enum Jpin_motor {
//% block="J1 (P13,P14)"
J1 = 1,
//% block="J2 (P15,P16)"
J2 = 2
}
export enum Turns {
//% blockId="T1B4" block="1/4"
T1B4 = 90,
//% blockId="T1B2" block="1/2"
T1B2 = 180,
//% blockId="T1B0" block="1"
T1B0 = 360,
//% blockId="T2B0" block="2"
T2B0 = 720,
//% blockId="T3B0" block="3"
T3B0 = 1080,
//% blockId="T4B0" block="4"
T4B0 = 1440,
//% blockId="T5B0" block="5"
T5B0 = 1800
}
export enum ledsta {
//% block="on"
led_on = 1,
//% block="off"
led_off = 0
}
let initialized = false
// let initializedMatrix = false
let matBuf = pins.createBuffer(17);
function i2cwrite(addr: number, reg: number, value: number) {
let buf = pins.createBuffer(2)
buf[0] = reg
buf[1] = value
pins.i2cWriteBuffer(addr, buf)
}
function i2ccmd(addr: number, value: number) {
let buf = pins.createBuffer(1)
buf[0] = value
pins.i2cWriteBuffer(addr, buf)
}
function i2cread(addr: number, reg: number) {
pins.i2cWriteNumber(addr, reg, NumberFormat.UInt8BE)
let val = pins.i2cReadNumber(addr, NumberFormat.UInt8BE)
return val
}
function initPCA9685(): void {
i2cwrite(PCA9685_ADDRESS, MODE1, 0x00)
setFreq(50); //1s / 20ms
for (let idx = 0; idx < 16; idx++) {
setPwm(idx, 0, 0);
}
initialized = true
}
function setFreq(freq: number): void {
// Constrain the frequency
let prescaleval = 25000000
prescaleval /= 4096
prescaleval /= freq
prescaleval = prescaleval * 25 / 24 // 0.915
prescaleval -= 1
let prescale = prescaleval //Math.Floor(prescaleval + 0.5);
let oldmode = i2cread(PCA9685_ADDRESS, MODE1)
let newmode = (oldmode & 0x7F) | 0x10 // sleep
i2cwrite(PCA9685_ADDRESS, MODE1, newmode) // go to sleep
i2cwrite(PCA9685_ADDRESS, PRESCALE, prescale) // set the prescaler
i2cwrite(PCA9685_ADDRESS, MODE1, oldmode)
basic.pause(1)
//control.waitMicros(5000);
i2cwrite(PCA9685_ADDRESS, MODE1, oldmode | 0xa1) //1010 0001
}
function setPwm(channel: number, on: number, off: number): void {
if (channel < 0 || channel > 15)
return;
let buf = pins.createBuffer(5)
buf[0] = LED0_ON_L + 4 * channel
buf[1] = on & 0xff
buf[2] = (on >> 8) & 0xff
buf[3] = off & 0xff
buf[4] = (off >> 8) & 0xff
pins.i2cWriteBuffer(PCA9685_ADDRESS, buf)
}
function setStepper(index: number, dir: boolean): void {
if (index == 1) {
if (dir) {
setPwm(0, STP_CHA_L, STP_CHA_H)
setPwm(3, STP_CHB_L, STP_CHB_H)
setPwm(1, STP_CHC_L, STP_CHC_H)
setPwm(2, STP_CHD_L, STP_CHD_H)
} else {
setPwm(2, STP_CHA_L, STP_CHA_H)
setPwm(1, STP_CHB_L, STP_CHB_H)
setPwm(3, STP_CHC_L, STP_CHC_H)
setPwm(0, STP_CHD_L, STP_CHD_H)
}
}
else {
if (dir) {
setPwm(4, STP_CHA_L, STP_CHA_H)
setPwm(7, STP_CHB_L, STP_CHB_H)
setPwm(5, STP_CHC_L, STP_CHC_H)
setPwm(6, STP_CHD_L, STP_CHD_H)
} else {
setPwm(6, STP_CHA_L, STP_CHA_H)
setPwm(5, STP_CHB_L, STP_CHB_H)
setPwm(7, STP_CHC_L, STP_CHC_H)
setPwm(4, STP_CHD_L, STP_CHD_H)
}
}
}
function stopMotor(index: number) {
setPwm((index - 1) * 2, 0, 0)
setPwm((index - 1) * 2 + 1, 0, 0)
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////
/**
* Servo Execute
* @param index Servo Channel; eg: S1
* @param degree [0-180] degree of servo; eg: 0, 90, 180
*/
//% blockId=robit_servo block="Servo|%index|degree %degree"
//% weight=100
//% advanced=true
//% blockGap=50
//% degree.min=0 degree.max=180
//% name.fieldEditor="gridpicker" name.fieldOptions.columns=4
export function Servo(index: Servos, degree: number): void {
if (!initialized) {
initPCA9685()
}
// 50hz: 20,000 us
let v_us = (degree * 1800 / 180 + 600) // 0.6 ~ 2.4
let value = v_us * 4096 / 20000
setPwm(index + 7, 0, value)
}
//步进电机旋转度数
//% blockId=robit_stepper_degree block="Stepper 28BYJ-48|%index|degree %degree"
//% weight=90
//% advanced=true
export function StepperDegree(index: Steppers, degree: number): void {
if (!initialized) {
initPCA9685()
}
setStepper(index, degree > 0)
degree = Math.abs(degree)
basic.pause(10240 * degree / 360)
MotorStopAll()
}
//步进电机圈数
//% blockId=robit_stepper_turn block="Stepper 28BYJ-48|%index|turn %turn"
//% weight=90
//% advanced=true
export function StepperTurn(index: Steppers, turn: Turns): void {
let degree = turn
StepperDegree(index, degree)
}
//单个电机速度
//% blockId=robit_motor_run block="%index |Wheel|speed %speed "
//% weight=85
//% speed.min=-100 speed.max=100
//% advanced=true
//% name.fieldEditor="gridpicker" name.fieldOptions.columns=4
export function MotorRun(index: Motors, speed: number): void {
if (!initialized) {
initPCA9685()
}
speed = speed * 40; // map 100 to 4096
if (speed >= 4096) {
speed = 4095
}
if (speed <= -4096) {
speed = -4095
}
if (index > 4 || index <= 0)
return
let pp = (index - 1) * 2
let pn = (index - 1) * 2 + 1
if (speed >= 0) {
setPwm(pp, 0, speed)
setPwm(pn, 0, 0)
} else {
setPwm(pp, 0, 0)
setPwm(pn, 0, -speed)
}
}
/**
* Execute two motors at the same time
* @param motor_left describe parameter here, eg: 1
* @param speed1 [-100-100] speed of motor; eg: 50
* @param motor_right describe parameter here, eg: 2
* @param speed2 [-100-100] speed of motor; eg: 50
*/
//% blockId=robit_motor_dual block="Left wheel %motor1|speed %speed1|Right wheel %motor2|speed %speed2"
//% weight=84
//% speed1.min=-100 speed1.max=100
//% speed2.min=-100 speed2.max=100
export function MotorRunDual(motor_left: Motors, speed1: number, motor_right: Motors, speed2: number): void {
speed1 = -speed1
MotorRun(motor_left, speed1 / 2 * 5); //100 map to 255
MotorRun(motor_right, speed2 / 2 * 5);
}
//% blockId=robit_stop block="Motor Stop|%index|"
//% weight=80
export function MotorStop(index: Motors): void {
MotorRun(index, 0);
}
//% blockId=robit_stop_all block="Motor Stop All"
//% weight=79
//% blockGap=50
export function MotorStopAll(): void {
for (let idx = 1; idx <= 4; idx++) {
stopMotor(idx);
}
}
/**
* get Ultrasonic
* @param jpin, eg: 3
*/
//% blockId=robit_ultrasonic block="Ultrasonic|pin %pin"
//% weight=10
export function Ultrasonic(jpin: Jpin): number {
let pin = DigitalPin.P2
switch (jpin) {
case 1: pin = DigitalPin.P14
break;
case 2: pin = DigitalPin.P16
break;
case 3: pin = DigitalPin.P2
break;
case 4: pin = DigitalPin.P4
break;
}
// send pulse
pins.setPull(pin, PinPullMode.PullNone);
pins.digitalWritePin(pin, 0);
control.waitMicros(2);
pins.digitalWritePin(pin, 1);
control.waitMicros(10);
pins.digitalWritePin(pin, 0);
// read pulse
let d = pins.pulseIn(pin, PulseValue.High, 23000); // 8 / 340 =
return d * 5 / 3 / 58;
}
//makeblock_touch_sensor
//% blockId=Touch_sensor_is_touched block="Touch sensor is touched on|pin %pin"
//% advanced=true
//% weight=10
export function Touch_sensor_is_touched(jpin: Jpin): boolean {
let pin = DigitalPin.P2
switch (jpin) {
case 1: pin = DigitalPin.P14
break;
case 2: pin = DigitalPin.P16
break;
case 3: pin = DigitalPin.P2
break;
case 4: pin = DigitalPin.P4
break;
}
pins.setPull(pin, PinPullMode.PullUp)
if (pins.digitalReadPin(pin) == 1) {
return true;
}
else {
return false;
}
}
//makeblock_led
//% blockId=makeblock_led block="connect LED to|pin %pin|turn %Ledsta"
//% weight=10
//% advanced=true
export function set_makeblock_led(jpin: Jpin, sta: ledsta): void {
let pin = DigitalPin.P2
switch (jpin) {
case 1: pin = DigitalPin.P14
break;
case 2: pin = DigitalPin.P16
break;
case 3: pin = DigitalPin.P2
break;
case 4: pin = DigitalPin.P4
break;
}
if (sta == 1) {
pins.digitalWritePin(pin, 1)
}
else if (sta == 0) {
pins.digitalWritePin(pin, 0)
}
}
//makeblock_motor
//% blockId=makeblock_motor block="connect 130-motor to|pin %pin|speed %speed "
//% weight=10
//% speed.min=-100 speed.max=100
//% advanced=true
export function set_makeblock_motor(jpin: Jpin_motor, speed: number): void {
let pin1
let pin2
switch (jpin) {
case 1: pin1 = AnalogPin.P13
pin2 = AnalogPin.P14
break;
case 2: pin1 = AnalogPin.P15
pin2 = AnalogPin.P16
break;
}
speed = speed * 10; // map 100 to 1000
if (speed < 1000) {
speed = -1000
}
if (speed > 1000) {
speed = 1000
}
if (speed >= 0) {
pins.analogWritePin(pin1, 0)
pins.analogSetPeriod(pin2, 1000)
pins.analogWritePin(pin2, speed)
}
if (speed < 0) {
speed = speed * -1
pins.analogWritePin(pin2, 0)
pins.analogSetPeriod(pin1, 1000)
pins.analogWritePin(pin1, speed)
}
}
/**
* init line follow
* @param jpin; eg: 1
*/
//% blockId=robit_init_line_follow block="init line follow|pin %jpin"
//% weight=10
export function init_line_follow(jpin: Jpin): void {
switch (jpin) {
case 1:
line_follow_Left_Pin = DigitalPin.P13
line_follow_Right_Pin = DigitalPin.P14
break;
case 2:
line_follow_Left_Pin = DigitalPin.P15
line_follow_Right_Pin = DigitalPin.P16
break;
case 3:
line_follow_Left_Pin = DigitalPin.P1
line_follow_Right_Pin = DigitalPin.P2
break;
case 4:
line_follow_Left_Pin = DigitalPin.P3
line_follow_Right_Pin = DigitalPin.P4
break;
}
}
/**
* line follow left
*/
//% blockId=robit_left_line_follow block="left line follow digitalpin"
//% weight=10
export function left_line_follow(): number {
let i = 0
if (pins.digitalReadPin(line_follow_Left_Pin) == 1) {
i = 1
} else i = 0
return i
}
/**
* right follow right
*/
//% blockId=robit_right_line_follow block="right line follow digitalpin"
//% weight=10
export function right_line_follow(): number {
let i = 0
if (pins.digitalReadPin(line_follow_Right_Pin) == 1) {
i = 1
} else i = 0
return i
}
}