Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/taubatexasrobotics/resources

Useful resources/modules from year to year
https://github.com/taubatexasrobotics/resources

first-robotics-competition frc pyfrc robot robotpy simulator

Last synced: about 1 month ago
JSON representation

Useful resources/modules from year to year

Awesome Lists containing this project

README

        

# Resources and test files/modules

This repository contains files separated by category. The file will depend on the type of test you would like to perform on the robot.
## Setup & Installation
For more information about the setup of RobotPy's packages, click here.

### Prerequisites
After cloning the repository, you must have Python 3 and pip installed on your computer.
### Installing packages
### Windows
```
py -3 -m pip install -r requirements.txt
```
### Linux/macOS
```
python3 -m pip install -r requirements.txt
```
## Testing code
For more information, click here.

### Windows
- Executing Robot Simulator
```
py -3 -m robotpy sim
```
- Deploy to the robot
```
py -3 -m robotpy deploy
```
---
### Linux/macOS
- Executing Robot Simulator
```
python3 -m robotpy sim
```
- Deploy to the robot
```
python3 -m robotpy deploy
```
## Using Robot Simulator (Reminder highlighted in red)
### Do not forget to enable a robot state!

![Screenshot 2022-05-22 004139](https://user-images.githubusercontent.com/73722088/169677573-44665203-6c40-4d09-a6f8-7b2e23cbed30.png)

## Contributions
Please check out the RobotPy's porting guide for a variety of guidelines for new examples.

## Credits
RobotPy (Python 3 for the FRC)