@plasius/learning 0.2.12 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -1
- package/dist/index.cjs +360 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +359 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,6 +69,7 @@ import {
|
|
|
69
69
|
OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1,
|
|
70
70
|
PADDLE_PULSE_MISSION_ONE_AUTHORING_V1,
|
|
71
71
|
PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1,
|
|
72
|
+
RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1,
|
|
72
73
|
RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1,
|
|
73
74
|
ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1,
|
|
74
75
|
ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1,
|
|
@@ -114,6 +115,9 @@ const danceRover = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
|
|
|
114
115
|
const obstacleExplorer = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
|
|
115
116
|
(module) => module.slug === "obstacle-explorer",
|
|
116
117
|
);
|
|
118
|
+
const rainbowRescueRover = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
|
|
119
|
+
(module) => module.slug === "rainbow-rescue-rover",
|
|
120
|
+
);
|
|
117
121
|
|
|
118
122
|
if (
|
|
119
123
|
!roadHopper ||
|
|
@@ -127,7 +131,8 @@ if (
|
|
|
127
131
|
!beaconBot ||
|
|
128
132
|
!servoCreature ||
|
|
129
133
|
!danceRover ||
|
|
130
|
-
!obstacleExplorer
|
|
134
|
+
!obstacleExplorer ||
|
|
135
|
+
!rainbowRescueRover
|
|
131
136
|
) {
|
|
132
137
|
throw new Error("Junior Coder module is missing");
|
|
133
138
|
}
|
|
@@ -180,6 +185,10 @@ assertValidMissionAuthoringBundle(
|
|
|
180
185
|
OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1,
|
|
181
186
|
obstacleExplorer,
|
|
182
187
|
);
|
|
188
|
+
assertValidMissionAuthoringBundle(
|
|
189
|
+
RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1,
|
|
190
|
+
rainbowRescueRover,
|
|
191
|
+
);
|
|
183
192
|
```
|
|
184
193
|
|
|
185
194
|
## Contract rules
|
|
@@ -217,6 +226,11 @@ assertValidMissionAuthoringBundle(
|
|
|
217
226
|
- Obstacle Explorer documents bounded simulated IR readings, Boolean route
|
|
218
227
|
decisions, recovery attempts, watchdog timing and fail-safe stop while every
|
|
219
228
|
rover and sensor remains pending adult calibration and lifted-wheel testing.
|
|
229
|
+
- Rainbow Rescue Rover documents simulated colour, target-zone, serial-command,
|
|
230
|
+
heartbeat and fail-safe-stop planning while Camera Module 3 frames stay on
|
|
231
|
+
the family Raspberry Pi. The website receives no frames, opens no camera or
|
|
232
|
+
serial port, never activates motors, and every physical component remains
|
|
233
|
+
pending adult bench verification.
|
|
220
234
|
|
|
221
235
|
See [the foundation design](docs/design/junior-coder-catalog-foundation.md),
|
|
222
236
|
[the uniform pricing design](docs/design/junior-coder-uniform-pricing.md),
|
package/dist/index.cjs
CHANGED
|
@@ -32,6 +32,7 @@ __export(index_exports, {
|
|
|
32
32
|
OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1: () => OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1,
|
|
33
33
|
PADDLE_PULSE_MISSION_ONE_AUTHORING_V1: () => PADDLE_PULSE_MISSION_ONE_AUTHORING_V1,
|
|
34
34
|
PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1: () => PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1,
|
|
35
|
+
RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1: () => RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1,
|
|
35
36
|
RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1: () => RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1,
|
|
36
37
|
ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1: () => ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1,
|
|
37
38
|
ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1: () => ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1,
|
|
@@ -3832,6 +3833,364 @@ var OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1 = {
|
|
|
3832
3833
|
}
|
|
3833
3834
|
}
|
|
3834
3835
|
};
|
|
3836
|
+
var RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1 = {
|
|
3837
|
+
version: MISSION_AUTHORING_CONTRACT_VERSION_V1,
|
|
3838
|
+
moduleId: "junior-coder.rainbow-rescue-rover",
|
|
3839
|
+
moduleVersion: "1.1.0",
|
|
3840
|
+
missionId: "rainbow-rescue-rover-mission-1",
|
|
3841
|
+
learner: {
|
|
3842
|
+
estimatedMinutes: 20,
|
|
3843
|
+
stages: [
|
|
3844
|
+
{
|
|
3845
|
+
kind: "learn",
|
|
3846
|
+
instruction: "Read what detectColour(), locateTarget(), planSerialCommand(), armHeartbeat() and failSafeStop() do in the private Rainbow Rescue Rover simulator.",
|
|
3847
|
+
artifactIds: ["rainbow-rescue-rover-m1-art"]
|
|
3848
|
+
},
|
|
3849
|
+
{
|
|
3850
|
+
kind: "predict",
|
|
3851
|
+
instruction: "Predict the simulated colour, target zone, bounded command, heartbeat time and final stopped state before the rescue plan runs.",
|
|
3852
|
+
artifactIds: []
|
|
3853
|
+
},
|
|
3854
|
+
{
|
|
3855
|
+
kind: "build",
|
|
3856
|
+
instruction: "Adjust the five documented integration calls to recognise one simulated target and plan one safe serial command with a heartbeat and fail-safe stop.",
|
|
3857
|
+
artifactIds: ["rainbow-rescue-rover-m1-code"]
|
|
3858
|
+
},
|
|
3859
|
+
{
|
|
3860
|
+
kind: "run",
|
|
3861
|
+
instruction: "Use the Run action button to start the private Rainbow Rescue Rover integration simulator.",
|
|
3862
|
+
artifactIds: ["rainbow-rescue-rover-m1-code"]
|
|
3863
|
+
},
|
|
3864
|
+
{
|
|
3865
|
+
kind: "assess",
|
|
3866
|
+
instruction: "Run the visible and protected deterministic colour, location, command, heartbeat and stop checks.",
|
|
3867
|
+
artifactIds: []
|
|
3868
|
+
},
|
|
3869
|
+
{
|
|
3870
|
+
kind: "inspect",
|
|
3871
|
+
instruction: "Compare the highlighted integration-plan line with the first rescue goal that did not pass.",
|
|
3872
|
+
artifactIds: []
|
|
3873
|
+
},
|
|
3874
|
+
{
|
|
3875
|
+
kind: "fix",
|
|
3876
|
+
instruction: "Change one bounded colour, target zone, command, heartbeat or stop call, then rerun and inspect the text telemetry.",
|
|
3877
|
+
artifactIds: ["rainbow-rescue-rover-m1-code"]
|
|
3878
|
+
},
|
|
3879
|
+
{
|
|
3880
|
+
kind: "explain",
|
|
3881
|
+
instruction: "Explain how family-local colour evidence became a bounded command plan and why the heartbeat and fail-safe stop protect every uncertain state.",
|
|
3882
|
+
artifactIds: []
|
|
3883
|
+
},
|
|
3884
|
+
{
|
|
3885
|
+
kind: "reward",
|
|
3886
|
+
instruction: "Collect the simulated badge when the score and mandatory privacy and safety checks pass; physical completion remains adult-only.",
|
|
3887
|
+
artifactIds: []
|
|
3888
|
+
}
|
|
3889
|
+
],
|
|
3890
|
+
readinessChecks: [
|
|
3891
|
+
{
|
|
3892
|
+
id: "rainbow-rescue-rover-m1-find-privacy",
|
|
3893
|
+
prompt: "Find the rule that keeps Camera Module 3 frames on the family Raspberry Pi and explain why only bounded command labels may leave it.",
|
|
3894
|
+
scored: false
|
|
3895
|
+
}
|
|
3896
|
+
],
|
|
3897
|
+
artifacts: [
|
|
3898
|
+
{
|
|
3899
|
+
id: "rainbow-rescue-rover-m1-code",
|
|
3900
|
+
kind: "starter-code",
|
|
3901
|
+
audience: "learner",
|
|
3902
|
+
solutionBearing: false
|
|
3903
|
+
},
|
|
3904
|
+
{
|
|
3905
|
+
id: "rainbow-rescue-rover-m1-art",
|
|
3906
|
+
kind: "starter-assets",
|
|
3907
|
+
audience: "learner",
|
|
3908
|
+
solutionBearing: false
|
|
3909
|
+
},
|
|
3910
|
+
{
|
|
3911
|
+
id: "rainbow-rescue-rover-m1-printable",
|
|
3912
|
+
kind: "printable",
|
|
3913
|
+
audience: "learner",
|
|
3914
|
+
solutionBearing: false
|
|
3915
|
+
}
|
|
3916
|
+
],
|
|
3917
|
+
goals: [
|
|
3918
|
+
{
|
|
3919
|
+
id: "rainbow-rescue-rover-m1-starts",
|
|
3920
|
+
statement: "The documented integration-plan settings are valid and the private simulator starts.",
|
|
3921
|
+
visibility: "visible",
|
|
3922
|
+
criterionIds: ["rainbow-rescue-rover-build"],
|
|
3923
|
+
completionRequired: true,
|
|
3924
|
+
aiRequired: false
|
|
3925
|
+
},
|
|
3926
|
+
{
|
|
3927
|
+
id: "rainbow-rescue-rover-m1-target-command",
|
|
3928
|
+
statement: "The rover plan recognises a green simulated target in the centre and selects one bounded forward command.",
|
|
3929
|
+
visibility: "visible",
|
|
3930
|
+
criterionIds: ["rainbow-rescue-rover-goal-one", "rainbow-rescue-rover-goal-two"],
|
|
3931
|
+
completionRequired: true,
|
|
3932
|
+
aiRequired: false
|
|
3933
|
+
},
|
|
3934
|
+
{
|
|
3935
|
+
id: "rainbow-rescue-rover-m1-private-runtime",
|
|
3936
|
+
statement: "The plan arms a heartbeat, ends fail-safe stopped and never accesses a camera, serial port, motor, network or browser storage.",
|
|
3937
|
+
visibility: "visible",
|
|
3938
|
+
criterionIds: ["rainbow-rescue-rover-safety"],
|
|
3939
|
+
completionRequired: true,
|
|
3940
|
+
aiRequired: false
|
|
3941
|
+
}
|
|
3942
|
+
],
|
|
3943
|
+
interactions: [
|
|
3944
|
+
{
|
|
3945
|
+
id: "rainbow-rescue-rover-m1-run-control",
|
|
3946
|
+
description: "Start the private Rainbow Rescue Rover integration simulation.",
|
|
3947
|
+
primaryMode: "pointer",
|
|
3948
|
+
alternativeIds: ["rainbow-rescue-rover-m1-keyboard-run"]
|
|
3949
|
+
},
|
|
3950
|
+
{
|
|
3951
|
+
id: "rainbow-rescue-rover-m1-code-control",
|
|
3952
|
+
description: "Edit the documented colour, target, command, heartbeat and stop calls.",
|
|
3953
|
+
primaryMode: "keyboard",
|
|
3954
|
+
alternativeIds: []
|
|
3955
|
+
},
|
|
3956
|
+
{
|
|
3957
|
+
id: "rainbow-rescue-rover-m1-target-preview",
|
|
3958
|
+
description: "Observe the simulated colour target, command route and stopped state.",
|
|
3959
|
+
primaryMode: "colour",
|
|
3960
|
+
alternativeIds: ["rainbow-rescue-rover-m1-telemetry"]
|
|
3961
|
+
}
|
|
3962
|
+
],
|
|
3963
|
+
accessibilityAlternatives: [
|
|
3964
|
+
{
|
|
3965
|
+
id: "rainbow-rescue-rover-m1-keyboard-run",
|
|
3966
|
+
modes: ["keyboard"],
|
|
3967
|
+
equivalentOutcome: true,
|
|
3968
|
+
description: "Press Enter or Space on the play-icon Run button to start the same simulator."
|
|
3969
|
+
},
|
|
3970
|
+
{
|
|
3971
|
+
id: "rainbow-rescue-rover-m1-telemetry",
|
|
3972
|
+
modes: ["text", "shape", "symbol", "reduced-motion"],
|
|
3973
|
+
equivalentOutcome: true,
|
|
3974
|
+
description: "Read the colour name, target zone, command, heartbeat milliseconds and stopped state without camera access, animation or colour alone."
|
|
3975
|
+
}
|
|
3976
|
+
],
|
|
3977
|
+
evidenceRequirements: [
|
|
3978
|
+
{
|
|
3979
|
+
id: "rainbow-rescue-rover-m1-assessment",
|
|
3980
|
+
goalIds: [
|
|
3981
|
+
"rainbow-rescue-rover-m1-starts",
|
|
3982
|
+
"rainbow-rescue-rover-m1-target-command",
|
|
3983
|
+
"rainbow-rescue-rover-m1-private-runtime"
|
|
3984
|
+
],
|
|
3985
|
+
kind: "assessment-result",
|
|
3986
|
+
retention: "entitlement",
|
|
3987
|
+
containsPersonalData: false
|
|
3988
|
+
},
|
|
3989
|
+
{
|
|
3990
|
+
id: "rainbow-rescue-rover-m1-explanation",
|
|
3991
|
+
goalIds: ["rainbow-rescue-rover-m1-target-command"],
|
|
3992
|
+
kind: "learner-explanation",
|
|
3993
|
+
retention: "attempt",
|
|
3994
|
+
containsPersonalData: false
|
|
3995
|
+
}
|
|
3996
|
+
],
|
|
3997
|
+
sideAdventures: [
|
|
3998
|
+
{
|
|
3999
|
+
id: "rainbow-rescue-rover-m1-remix",
|
|
4000
|
+
prompt: "Invent an original colour rescue rule and add a text, shape or symbol cue that explains the command without camera frames, motion or colour alone.",
|
|
4001
|
+
completionRequired: false
|
|
4002
|
+
}
|
|
4003
|
+
],
|
|
4004
|
+
rewardBindings: [
|
|
4005
|
+
{
|
|
4006
|
+
id: "rainbow-rescue-rover-m1-simulated-badge",
|
|
4007
|
+
badgeId: "rainbow-rescue-rover-mission-complete",
|
|
4008
|
+
goalIds: [
|
|
4009
|
+
"rainbow-rescue-rover-m1-starts",
|
|
4010
|
+
"rainbow-rescue-rover-m1-target-command",
|
|
4011
|
+
"rainbow-rescue-rover-m1-private-runtime"
|
|
4012
|
+
],
|
|
4013
|
+
deterministic: true,
|
|
4014
|
+
random: false,
|
|
4015
|
+
tokenConvertible: false
|
|
4016
|
+
}
|
|
4017
|
+
],
|
|
4018
|
+
functionReference: [
|
|
4019
|
+
{
|
|
4020
|
+
id: "rainbow-rescue-rover-function-detect",
|
|
4021
|
+
signature: "detectColour(colour)",
|
|
4022
|
+
summary: "Selects one labelled colour result in the private simulator.",
|
|
4023
|
+
parameters: [
|
|
4024
|
+
{
|
|
4025
|
+
name: "colour",
|
|
4026
|
+
type: "string",
|
|
4027
|
+
description: "Use red, green, blue or yellow."
|
|
4028
|
+
}
|
|
4029
|
+
],
|
|
4030
|
+
effect: "Returns one simulator colour label and confidence state; it never opens a camera or receives a frame.",
|
|
4031
|
+
example: 'detectColour("green");'
|
|
4032
|
+
},
|
|
4033
|
+
{
|
|
4034
|
+
id: "rainbow-rescue-rover-function-locate",
|
|
4035
|
+
signature: "locateTarget(zone)",
|
|
4036
|
+
summary: "Places the simulated target in one labelled horizontal zone.",
|
|
4037
|
+
parameters: [
|
|
4038
|
+
{
|
|
4039
|
+
name: "zone",
|
|
4040
|
+
type: "string",
|
|
4041
|
+
description: "Use left, centre or right."
|
|
4042
|
+
}
|
|
4043
|
+
],
|
|
4044
|
+
effect: "Updates text, shape and coordinate cues in the simulator without analysing or storing an image.",
|
|
4045
|
+
example: 'locateTarget("centre");'
|
|
4046
|
+
},
|
|
4047
|
+
{
|
|
4048
|
+
id: "rainbow-rescue-rover-function-command",
|
|
4049
|
+
signature: "planSerialCommand(command)",
|
|
4050
|
+
summary: "Plans one bounded command label for the simulated rover link.",
|
|
4051
|
+
parameters: [
|
|
4052
|
+
{
|
|
4053
|
+
name: "command",
|
|
4054
|
+
type: "string",
|
|
4055
|
+
description: "Use forward, turn-left, turn-right or stop."
|
|
4056
|
+
}
|
|
4057
|
+
],
|
|
4058
|
+
effect: "Records a simulator-only command label; it never opens a serial port or activates motors.",
|
|
4059
|
+
example: 'planSerialCommand("forward");'
|
|
4060
|
+
},
|
|
4061
|
+
{
|
|
4062
|
+
id: "rainbow-rescue-rover-function-heartbeat",
|
|
4063
|
+
signature: "armHeartbeat(duration)",
|
|
4064
|
+
summary: "Arms a bounded simulated command heartbeat.",
|
|
4065
|
+
parameters: [
|
|
4066
|
+
{
|
|
4067
|
+
name: "duration",
|
|
4068
|
+
type: "whole number",
|
|
4069
|
+
description: "A bounded heartbeat from 250 to 1000 milliseconds."
|
|
4070
|
+
}
|
|
4071
|
+
],
|
|
4072
|
+
effect: "Records heartbeat telemetry so an uncertain simulator link becomes stopped; it cannot maintain physical movement.",
|
|
4073
|
+
example: "armHeartbeat(500);"
|
|
4074
|
+
},
|
|
4075
|
+
{
|
|
4076
|
+
id: "rainbow-rescue-rover-function-stop",
|
|
4077
|
+
signature: "failSafeStop()",
|
|
4078
|
+
summary: "Ends the integration simulation in a fail-safe stopped state.",
|
|
4079
|
+
parameters: [],
|
|
4080
|
+
effect: "Marks the private simulator stopped after the bounded command plan; it cannot activate, stop or otherwise control physical hardware.",
|
|
4081
|
+
example: "failSafeStop();"
|
|
4082
|
+
}
|
|
4083
|
+
]
|
|
4084
|
+
},
|
|
4085
|
+
facilitator: {
|
|
4086
|
+
artifacts: [
|
|
4087
|
+
{
|
|
4088
|
+
id: "rainbow-rescue-rover-m1-answer-key",
|
|
4089
|
+
kind: "answer-key",
|
|
4090
|
+
audience: "facilitator",
|
|
4091
|
+
solutionBearing: true
|
|
4092
|
+
},
|
|
4093
|
+
{
|
|
4094
|
+
id: "rainbow-rescue-rover-m1-protected-tests",
|
|
4095
|
+
kind: "protected-test",
|
|
4096
|
+
audience: "facilitator",
|
|
4097
|
+
solutionBearing: true
|
|
4098
|
+
},
|
|
4099
|
+
{
|
|
4100
|
+
id: "rainbow-rescue-rover-m1-adult-hardware-guide",
|
|
4101
|
+
kind: "facilitator-note",
|
|
4102
|
+
audience: "facilitator",
|
|
4103
|
+
solutionBearing: true
|
|
4104
|
+
}
|
|
4105
|
+
],
|
|
4106
|
+
protectedGoals: [
|
|
4107
|
+
{
|
|
4108
|
+
id: "rainbow-rescue-rover-m1-protected-resilience",
|
|
4109
|
+
statement: "The simulator rejects unsupported colours, zones, serial commands, invalid heartbeats, missing stop calls and any camera, serial or physical-hardware request.",
|
|
4110
|
+
visibility: "protected",
|
|
4111
|
+
criterionIds: ["rainbow-rescue-rover-edge-one", "rainbow-rescue-rover-edge-two"],
|
|
4112
|
+
completionRequired: false,
|
|
4113
|
+
aiRequired: false
|
|
4114
|
+
}
|
|
4115
|
+
],
|
|
4116
|
+
prompts: [
|
|
4117
|
+
"Ask the learner to predict the labelled target, bounded command and final stopped state before suggesting one change.",
|
|
4118
|
+
"Use only authored function guidance and simulator telemetry; never request camera frames or give learner wiring, power or motor-control advice.",
|
|
4119
|
+
"Physical export stays unavailable until an adult acknowledges the exact manifest and every camera, computer, serial, rover and power component has bench-test evidence."
|
|
4120
|
+
]
|
|
4121
|
+
},
|
|
4122
|
+
hardware: {
|
|
4123
|
+
requirementsVersion: "1.0.0",
|
|
4124
|
+
hardwareIncluded: false,
|
|
4125
|
+
completePathItemIds: [
|
|
4126
|
+
"pico-2-w",
|
|
4127
|
+
"breadboard",
|
|
4128
|
+
"usb-data-cable",
|
|
4129
|
+
"jumper-wires",
|
|
4130
|
+
"verified-explorer",
|
|
4131
|
+
"pi-zero-2-w",
|
|
4132
|
+
"camera-3",
|
|
4133
|
+
"pi-storage-power"
|
|
4134
|
+
],
|
|
4135
|
+
incrementalItemIds: [
|
|
4136
|
+
"verified-explorer",
|
|
4137
|
+
"pi-zero-2-w",
|
|
4138
|
+
"camera-3",
|
|
4139
|
+
"pi-storage-power"
|
|
4140
|
+
],
|
|
4141
|
+
components: [
|
|
4142
|
+
{ itemId: "pico-2-w", quantity: 1, acquisitionScope: "complete-path", verificationStatus: "pending-bench-test", compatibilityClaimed: false, physicalCompletionEligible: false },
|
|
4143
|
+
{ itemId: "breadboard", quantity: 1, acquisitionScope: "complete-path", verificationStatus: "pending-bench-test", compatibilityClaimed: false, physicalCompletionEligible: false },
|
|
4144
|
+
{ itemId: "usb-data-cable", quantity: 1, acquisitionScope: "complete-path", verificationStatus: "pending-bench-test", compatibilityClaimed: false, physicalCompletionEligible: false },
|
|
4145
|
+
{ itemId: "jumper-wires", quantity: 12, acquisitionScope: "complete-path", verificationStatus: "pending-bench-test", compatibilityClaimed: false, physicalCompletionEligible: false },
|
|
4146
|
+
{ itemId: "verified-explorer", quantity: 1, acquisitionScope: "incremental", verificationStatus: "pending-bench-test", compatibilityClaimed: false, physicalCompletionEligible: false },
|
|
4147
|
+
{ itemId: "pi-zero-2-w", quantity: 1, acquisitionScope: "incremental", verificationStatus: "pending-bench-test", compatibilityClaimed: false, physicalCompletionEligible: false },
|
|
4148
|
+
{ itemId: "camera-3", quantity: 1, acquisitionScope: "incremental", verificationStatus: "pending-bench-test", compatibilityClaimed: false, physicalCompletionEligible: false },
|
|
4149
|
+
{ itemId: "pi-storage-power", quantity: 1, acquisitionScope: "incremental", verificationStatus: "pending-bench-test", compatibilityClaimed: false, physicalCompletionEligible: false }
|
|
4150
|
+
],
|
|
4151
|
+
safeguards: {
|
|
4152
|
+
adultAssemblyRequired: true,
|
|
4153
|
+
adultAcknowledgementRequiredForExport: true,
|
|
4154
|
+
websiteMayControlHardware: false,
|
|
4155
|
+
simulatorCompletionAvailable: true,
|
|
4156
|
+
simulatedBadgeId: "rainbow-rescue-rover-mission-complete",
|
|
4157
|
+
physicalBadgeId: "rainbow-rescue-rover-physical-builder",
|
|
4158
|
+
physicalBadgeRequiresAdultSignoff: true,
|
|
4159
|
+
adultAssemblySteps: [
|
|
4160
|
+
"Confirm the exact bench-signed rover, Pi Zero 2 W, Camera Module 3 and correct Zero-series camera ribbon identities against the manifest.",
|
|
4161
|
+
"With all power disconnected, fit and inspect the camera ribbon, storage, Pi power, Pico data link and isolated rover assemblies using the adult guide.",
|
|
4162
|
+
"Complete local colour calibration, bounded serial-command, heartbeat, link-loss and fail-safe-stop tests with the wheels lifted clear of the surface."
|
|
4163
|
+
],
|
|
4164
|
+
powerRequirements: [
|
|
4165
|
+
"Use a separate regulated Raspberry Pi power supply for the Pi Zero 2 W and Camera Module 3.",
|
|
4166
|
+
"Use the verified switched protected motor supply for the rover; never power motors, the Pi Zero 2 W or Camera Module 3 from a Pico GPIO pin.",
|
|
4167
|
+
"Keep every power switch accessible and disconnect every source before changing the camera ribbon, storage, wiring, sensors, wheels or chassis parts."
|
|
4168
|
+
],
|
|
4169
|
+
cableRequirements: [
|
|
4170
|
+
"One known data-capable USB cable compatible with the Pico 2 W and Pi Zero 2 W serial plan.",
|
|
4171
|
+
"The correct Zero-series Camera Module 3 ribbon and adult-verified insulated rover and power connectors."
|
|
4172
|
+
],
|
|
4173
|
+
softwarePrerequisites: [
|
|
4174
|
+
"Current Raspberry Pi OS with supported rpicam and Picamera2 software on the family-owned Pi Zero 2 W.",
|
|
4175
|
+
"Supported Pico SDK toolchain and known-good recovery firmware with adult-owned heartbeat, link-loss and emergency-stop behaviour.",
|
|
4176
|
+
"A family-local colour-calibration utility that never uploads, publishes or transmits Camera Module 3 frames."
|
|
4177
|
+
],
|
|
4178
|
+
warnings: [
|
|
4179
|
+
"Hardware is not included with the module.",
|
|
4180
|
+
"No listed camera, computer, rover, serial or power configuration currently claims compatibility or physical-completion eligibility.",
|
|
4181
|
+
"Camera frames remain on the family Raspberry Pi and must never be submitted to Plasius, an agent service or a published project.",
|
|
4182
|
+
"The website never activates motors, opens a camera or serial port, and an uncertain or missing heartbeat must stop the physical rover.",
|
|
4183
|
+
"Moving wheels, pinch points, stalled motors, camera ribbon damage and unsuitable supplies can cause unsafe movement, heat or damage; adult assembly, calibration and testing are mandatory.",
|
|
4184
|
+
"The simulator and simulated badge remain available without physical equipment."
|
|
4185
|
+
],
|
|
4186
|
+
unrelatedHardwareNotRequired: [
|
|
4187
|
+
"cloud camera, object-recognition or face-recognition services",
|
|
4188
|
+
"microphone, speaker, location or biometric sensors",
|
|
4189
|
+
"public hosting, analytics, advertising or external network access"
|
|
4190
|
+
]
|
|
4191
|
+
}
|
|
4192
|
+
}
|
|
4193
|
+
};
|
|
3835
4194
|
var RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1 = {
|
|
3836
4195
|
version: MISSION_AUTHORING_CONTRACT_VERSION_V1,
|
|
3837
4196
|
moduleId: "junior-coder.rescue-crew-commander",
|
|
@@ -4639,6 +4998,7 @@ ${summary}`);
|
|
|
4639
4998
|
OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1,
|
|
4640
4999
|
PADDLE_PULSE_MISSION_ONE_AUTHORING_V1,
|
|
4641
5000
|
PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1,
|
|
5001
|
+
RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1,
|
|
4642
5002
|
RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1,
|
|
4643
5003
|
ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1,
|
|
4644
5004
|
ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1,
|