-
Notifications
You must be signed in to change notification settings - Fork 8
Start of design doc #74
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Overarching thoughts (North Star) | ||
* The primary purpose for Blocks is to be an easier environment for students to program robots. | ||
* Students should be able to program in Blocks without any experienced software mentor help. | ||
* This means that reducing confusion in blocks is more important than being 1:1 mapping to Python | ||
* For ease of use, we are ok with not being able to do everything in Blocks you can do in Python. | ||
* You should be able to make a competitive robot using Blocks | ||
* Our goal is to rasie the floor, not lower the ceiling | ||
* Programming in Blocks is still programming. You can make logic errors and programs that don't work and have errors | ||
* Some students will move on from Blocks to text based languages | ||
* Students that want to do more than they can in Blocks can export from Blocks and use that as a starting point for their own Python coding. | ||
alan412 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
# Intentional Limitations (for simplicity) | ||
* Each blockly workspace goes to one Python file (module) and can only contain one class | ||
* The only type of methods that can be created are class methods | ||
alan412 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
* All variables created in blockly will be class instance variables | ||
|
||
# Design thoughts | ||
## OpModes | ||
* An OpMode can be either Autonomous or Teleop | ||
alan412 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
* An OpMode can be marked as Disabled or Enabled | ||
* An OpMode has access to the Robot class | ||
## Robot | ||
* There should be one robot class that is shared between all OpModes | ||
* A robot has zero or more mechanisms | ||
alan412 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
## Mechanisms | ||
* Every actuator is a mechanism | ||
* Every sensor is a mechanism | ||
* A mechansim can be created by the student and can have zero or more submechanisms | ||
* Example: A claw could have a servo (to open and close) and a range sensor (to determine when something is in the claw) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.