Skip to content

Commit 2dc7cfd

Browse files
committed
add option to turn off hud
1 parent 2d668db commit 2dc7cfd

File tree

4 files changed

+55
-18
lines changed

4 files changed

+55
-18
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ codal-jacdac
1515
*.Identifier
1616
Gemfile.lock
1717
.jekyll-metadata
18+
.DS_Store

robot/README.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,24 @@ and controlled by a MicroCode program running on the arcade shield.
1212
microcode.elecfreaksCuteBot.start()
1313
```
1414

15+
- Use the blocks to control the robot.
16+
17+
```blocks
18+
input.onButtonPressed(Button.A, () => {
19+
microcode.motorRun(50, 50)
20+
})
21+
input.onButtonPressed(Button.B, () => {
22+
microcode.motorStop()
23+
})
24+
```
25+
1526
## Usage with MicroCode
1627

1728
Download this firmware onto the micro:bit that stays on the robot. Then use MicroCode to send commands
1829
to the robot.
1930

2031
- [Documentation](https://microsoft.github.io/microcode/docs/robot)
2132

22-
You can also use blocks to configure the radio group and motor drift.
33+
```
2334
24-
```blocks
25-
microcode.elecfreaksCuteBot.start()
26-
microcode.setRadioGroup(3)
27-
microcode.setMotorDrift(2)
2835
```

robot/blocks.ts

+34-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace microcode {
77
export let robot: RobotDriver
88

99
function checkRobotDriver() {
10-
if (!robot) throw "Add 'robot start' block in the 'on start' block"
10+
if (!robot) throw "Add 'robot start ...' block in the 'on start' block"
1111
}
1212

1313
/**
@@ -41,6 +41,31 @@ namespace microcode {
4141
robot.motorRun(0, 0)
4242
}
4343

44+
/**
45+
* Sets the LED color
46+
*/
47+
//% blockId="microcoderobotsetcolor" block="robot set color $rgb"
48+
//% group="Motors"
49+
//% weight=10
50+
//% rgb.shadow=colorNumberPicker
51+
export function setColor(rgb: number) {
52+
checkRobotDriver()
53+
robot.setColor(rgb)
54+
}
55+
56+
/**
57+
* Play a tone through the robot speaker
58+
*/
59+
//% blockId="microcoderobotplaytone" block="robot play tone $frequency for $duration"
60+
//% group="Motors"
61+
//% weight=10
62+
//% frequency.shadow=device_note
63+
//% duration.shadow=device_beat
64+
export function playTone(frequency: number, duration: number) {
65+
checkRobotDriver()
66+
robot.playTone(frequency, duration)
67+
}
68+
4469
/**
4570
* Gets the distance reported by the distance sensor
4671
*/
@@ -115,14 +140,15 @@ namespace microcode {
115140
}
116141

117142
/**
118-
* Sets the LED color
143+
* Enables or disables the display of the robot state on the LED matrix.
144+
* @param enabled
119145
*/
120-
//% blockId="microcoderobotsetcolor" block="robot set color $rgb"
121-
//% group="Motors"
122-
//% weight=10
123-
//% rgb.shadow=colorNumberPicker
124-
export function setColor(rgb: number) {
146+
//% block="robot set display to $enabled"
147+
//% blockId="microcoderobotsetdisplay"
148+
//% group="Configuration"
149+
//% enabled.shadow=toggleOnOff
150+
export function setDisplay(enabled: boolean) {
125151
checkRobotDriver()
126-
robot.setColor(rgb)
152+
robot.hud = !!enabled
127153
}
128154
}

robot/robotdriver.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ namespace microcode {
3434
private readonly sonarDistanceFilter = new KalmanFilter1D()
3535
private lastSonarValue = 0
3636

37+
hud = true
3738
private showConfiguration: number = 0
3839
private configDrift: boolean = undefined
3940
private targetColor = 0
@@ -291,14 +292,12 @@ namespace microcode {
291292

292293
private setMotorState(left: number, right: number) {
293294
this.robot.motorRun(left, right)
294-
if (this.showConfiguration) return
295+
if (this.showConfiguration || !this.hud) return
295296
this.showSingleMotorState(3, left)
296297
this.showSingleMotorState(1, right)
297298
}
298299

299300
private showSingleMotorState(x: number, speed: number) {
300-
if (this.showConfiguration) return
301-
302301
if (Math.abs(speed) < 30) led.unplot(x, 2)
303302
else led.plot(x, 2)
304303
if (speed >= 30) led.plot(x, 1)
@@ -313,7 +312,7 @@ namespace microcode {
313312

314313
private updateLineState() {
315314
const lineState = this.lineState()
316-
if (this.showConfiguration) return
315+
if (this.showConfiguration || !this.hud) return
317316

318317
// render left/right lines
319318
const left =
@@ -350,7 +349,11 @@ namespace microcode {
350349
)
351350
}
352351

353-
if (!this.showConfiguration && this.lastSonarValue !== undefined) {
352+
if (
353+
!this.showConfiguration &&
354+
this.hud &&
355+
this.lastSonarValue !== undefined
356+
) {
354357
const d = this.lastSonarValue
355358
for (let y = 0; y < 5; y++)
356359
if (5 - y <= d) led.plot(2, y)

0 commit comments

Comments
 (0)