Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tags to visible criteria #5656

Merged
merged 1 commit into from
May 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions docs/teachertool/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"description": "At least the specified number of event blocks are present.",
"docPath": "/teachertool",
"maxCount": 1,
"tags": ["Input and Output"],
"params": [
{
"name": "count",
Expand All @@ -22,15 +23,17 @@
"template": "Uses input",
"description": "At least one block that reads or reacts to user input is present.",
"docPath": "/teachertool",
"maxCount": 1
"maxCount": 1,
"tags": ["Input and Output"]
},
{
"id": "D285D79B-85E5-4C8D-82D2-5A9E35AB1163",
"use": "has_output",
"template": "Produces output",
"description": "At least one block that lights up LEDs, makes sound, or writes to pins is present.",
"docPath": "/teachertool",
"maxCount": 1
"maxCount": 1,
"tags": ["Input and Output"]
},
{
"id": "2CA4A5DA-4690-4514-97F5-2FE145AB3A59",
Expand All @@ -39,6 +42,7 @@
"description": "Uses blocks with LED coordinate inputs at least the specified number of times.",
"docPath": "/teachertool",
"maxCount": 1,
"tags": ["Code Elements"],
"params": [
{
"name": "count",
Expand All @@ -54,15 +58,17 @@
"template": "Sends radio messages",
"description": "Radio group is set and at least one block that sends a radio message is present.",
"docPath": "/teachertool",
"maxCount": 1
"maxCount": 1,
"tags": ["Input and Output"]
},
{
"id": "8C8792C4-31C4-439D-ACAB-C99C9B8250AD",
"use": "receives_radio_message",
"template": "Receives radio messages",
"description": "Radio group is set and at least one block that listens for radio messages is present.",
"docPath": "/teachertool",
"maxCount": 1
"maxCount": 1,
"tags": ["Input and Output"]
},
{
"id": "18C44CC4-497F-45EC-90FA-CE7DB117AD03",
Expand Down
Loading