-
Notifications
You must be signed in to change notification settings - Fork 4
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
update documentation based on docx #220
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added stuff
merging! |
meow meow meow please review |
.build/.gitignore
Outdated
@@ -1 +0,0 @@ | |||
sizes.json |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please re-remove sizes.json. We should be generating this every time we build, so this shouldn't be needed
|
||
:::tip | ||
You can also access these docs from your robot. Go to <http://robot.go/docs> when you're connected to your robot. | ||
::: | ||
|
||
It might also be a good idea to sign up for the [forum](/forum/). You can do this using the registration code provided in your kit. This is a great place to ask questions on anything related to the competition, the kit, or robot programming. | ||
It might also be a good idea to sign up for the [forum](/forum/). This is a great place to ask questions on anything related to the competition, the kit, or robot programming. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is the forum still up & can you sign up? Did we provide codes in their kit? If so, we should say that. If not, we should remove this entirely
docs/hello-gpio.md
Outdated
@@ -68,3 +68,6 @@ R.gpio[POT_PIN].mode = robot.INPUT_ANALOG | |||
while True: | |||
print(R.gpio[POT_PIN].analog) | |||
``` | |||
|
|||
## Using distance sensors with retroreflective tape | |||
//TODO |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
//TODO
docs/hello-motors.md
Outdated
``` | ||
Running this program will make your robot move forwards. Unfortunately, it will never tell it to stop moving forwards, so hopefully you put it on the floor and it hasn't driven off the table.<br> | ||
Running this program will make you1 roove forwards. Unfortunately, it will never tell it to stop moving forwards, so hopefully you put it on the floor and it hasn't driven off the table.<br> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you1 roove
docs/hello-motors.md
Outdated
R.motors[1] = 0 | ||
R.motors[2] = 0 | ||
R.motors[0] = 0 | ||
R.moto1s[0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
moto1s
docs/hello-motors.md
Outdated
``` | ||
To turn the robot, you just need to set one motor going forwards and the second motor going backwards. The following program makes the robot do a little dance - try it out! | ||
To turn the robot, you just need to1setmotor going forwards and the second motor going backwards. The following program makes the robot do a little dance - try it out! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to1setmotor
``` | ||
A final note, even if you set both motors to the same power, your robot probably won't drive in a perfectly straight line. This is due to defects in the motors, and unless you get specialised motors, no two motors will have the same offset. How your robot deals with this is up to you! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This whole file, actually, seems to have some weird spelling errors
No description provided.