-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
216 lines (200 loc) · 5.38 KB
/
main.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
/**
* Enumeration of motors.
*/
enum InventMotor {
//% block="left"
Left,
//% block="right"
Right,
//% block="all"
All
}
enum InventMotorDir {
//% block="forward"
Forward,
//% block="reverse"
Reverse
}
enum InventLineSensor {
//% block="left (P1)"
Left,
//% block="right(P0)"
Right
}
/**
* Custom blocks
*/
//% weight=10 color=#ea4e1b icon="\uf12e"
namespace invent {
/**
* Drive motor(s) forward or reverse.
*
* @param motor motor to drive.
* @param direction direction to drive
* @param speed speed of motor
*/
//% blockId="invent_motor" block="drive motor %motor|direction %direction|speed %speed"
//% weight=100
export function motor(motor: InventMotor, direction: InventMotorDir, speed: number): void {
let aSpeed=0
if (speed > 100) {
aSpeed = 1023;
}
else if (speed < -100) {
aSpeed = 1023;
}
else {
if (speed>0){
aSpeed = (speed*1023) / 100;
}
if (speed<0){
aSpeed = (-speed*1023) / 100;
}
}
if (direction==InventMotorDir.Reverse){
speed=speed*-1;
}
if ((motor == InventMotor.Left) || (motor == InventMotor.All)) {
pins.analogWritePin(AnalogPin.P14, aSpeed);
if(speed>0){
pins.digitalWritePin(DigitalPin.P13,0);
}
else {
pins.digitalWritePin(DigitalPin.P13,1);
}
}
if ((motor == InventMotor.Right) || (motor == InventMotor.All)) {
pins.analogWritePin(AnalogPin.P16, aSpeed);
if(speed>0){
pins.digitalWritePin(DigitalPin.P15,1);
}
else {
pins.digitalWritePin(DigitalPin.P15,0);
}
}
}
/** Line sensor global variables
*/
let item = 0
let time = 0
let r_min = 0
let l_min = 0
let r_max = 0
let l_max = 0
let l_thr = 0
let r_thr = 0
/**
* Calibrate line sensors on P1 (left) and P0 (right)
*/
//% blockId="invent_calibrate_line_sensors" block="calibrate line sensors"
//% weight=100
export function calibrate_line_sensors(): void {
l_max = 0
r_max = 0
l_min = 1023
r_min = 1023
invent.motor(InventMotor.Left, InventMotorDir.Reverse, 50)
invent.motor(InventMotor.Right, InventMotorDir.Forward, 50)
time = input.runningTime()
while (input.runningTime() - time < 1000) {
item = pins.analogReadPin(AnalogPin.P1)
if (item > l_max) {
l_max = item
}
if (item < l_min) {
l_min = item
}
item = pins.analogReadPin(AnalogPin.P0)
if (item > r_max) {
r_max = item
}
if (item < r_min) {
r_min = item
}
}
invent.motor(InventMotor.Left, InventMotorDir.Forward, 50)
invent.motor(InventMotor.Right, InventMotorDir.Reverse, 50)
time = input.runningTime()
while (input.runningTime() - time < 2000) {
item = pins.analogReadPin(AnalogPin.P1)
if (item > l_max) {
l_max = item
}
if (item < l_min) {
l_min = item
}
item = pins.analogReadPin(AnalogPin.P0)
if (item > r_max) {
r_max = item
}
if (item < r_min) {
r_min = item
}
}
l_thr = (l_max + l_min) / 2
r_thr = (r_max + r_min) / 2
invent.motor(InventMotor.Left, InventMotorDir.Reverse, 100)
invent.motor(InventMotor.Right, InventMotorDir.Forward, 100)
basic.pause(400)
while (pins.analogReadPin(AnalogPin.P0) > r_thr && pins.analogReadPin(AnalogPin.P1) > l_thr) {
invent.motor(InventMotor.Left, InventMotorDir.Reverse, 40)
invent.motor(InventMotor.Right, InventMotorDir.Forward, 40)
}
invent.motor(InventMotor.Left, InventMotorDir.Forward, 0)
invent.motor(InventMotor.Right, InventMotorDir.Forward, 0)
}
/**
* Digital Read Line Sensors
*
* @param sensor sensor to read
*/
//% blockId="invent_line_sensor_digital" block="digital read line sensor %sensor"
//% weight=100
export function line_sensor_digital(sensor: InventLineSensor): number {
if (sensor == InventLineSensor.Left){
if(pins.analogReadPin(AnalogPin.P1)>l_thr){
return 1
}
else {
return 0
}
}
else {
if(pins.analogReadPin(AnalogPin.P0)>r_thr){
return 1
}
else {
return 0
}
}
}
/**
* Analog Read Line Sensors
*
* @param sensor sensor to read
*/
//% blockId="invent_line_sensor_analog" block="analog read line sensor %sensor"
//% weight=100
export function line_sensor_analog(sensor: InventLineSensor): number {
if (sensor == InventLineSensor.Left){
let l_anl = pins.map(
pins.analogReadPin(AnalogPin.P1),
l_min,
l_max,
0,
100
)
return l_anl
}
else {
let r_anl = pins.map(
pins.analogReadPin(AnalogPin.P0),
r_min,
r_max,
0,
100
)
return r_anl
}
}
}