mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
The "Utility" name better matches its intended generic use case and avoids overloaded terminology with unit testing (e.g. the need to name the opmode annotation `@TestOpMode`). The driver station will also be updated to reflect this change.
98 lines
2.9 KiB
Python
98 lines
2.9 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
# Copyright (c) FIRST and other WPILib contributors.
|
|
# Open Source Software; you can modify and/or share it under the terms of
|
|
# the WPILib BSD license file in the root directory of this project.
|
|
#
|
|
|
|
#
|
|
# Example that shows how to connect to a ROMI from RobotPy
|
|
#
|
|
# Requirements
|
|
# ------------
|
|
#
|
|
# You must have the robotpy-halsim-ws package installed. This is best done via:
|
|
#
|
|
# # Windows
|
|
# py -3 -m pip install robotpy[commands2,sim]
|
|
#
|
|
# # Linux/macOS
|
|
# pip3 install robotpy[commands2,sim]
|
|
#
|
|
# Run the program
|
|
# ---------------
|
|
#
|
|
# Use the dedicated ROMI command:
|
|
#
|
|
# # Windows
|
|
# py -3 -m robotpy run-romi
|
|
#
|
|
# # Linux/macOS
|
|
# python -m robotpy run-romi
|
|
#
|
|
# If your ROMI isn't at the default address, use --host/--port:
|
|
#
|
|
# python -m robotpy run-romi --host 10.0.0.2 --port 3300
|
|
#
|
|
# By default the WPILib simulation GUI will be displayed. To disable the display
|
|
# you can add the --nogui option.
|
|
#
|
|
|
|
import typing
|
|
|
|
import wpilib
|
|
import commands2
|
|
|
|
from robotcontainer import RobotContainer
|
|
|
|
|
|
class MyRobot(commands2.TimedCommandRobot):
|
|
"""
|
|
Command v2 robots are encouraged to inherit from TimedCommandRobot, which
|
|
has an implementation of robotPeriodic which runs the scheduler for you
|
|
"""
|
|
|
|
autonomousCommand: typing.Optional[commands2.Command] = None
|
|
|
|
def __init__(self) -> None:
|
|
"""
|
|
This function is run when the robot is first started up and should be used for any
|
|
initialization code.
|
|
"""
|
|
|
|
super().__init__()
|
|
# Instantiate our RobotContainer. This will perform all our button bindings, and put our
|
|
# autonomous chooser on the dashboard.
|
|
self.container = RobotContainer()
|
|
|
|
def disabledInit(self) -> None:
|
|
"""This function is called once each time the robot enters Disabled mode."""
|
|
|
|
def disabledPeriodic(self) -> None:
|
|
"""This function is called periodically when disabled"""
|
|
|
|
def autonomousInit(self) -> None:
|
|
"""This autonomous runs the autonomous command selected by your RobotContainer class."""
|
|
self.autonomousCommand = self.container.getAutonomousCommand()
|
|
|
|
if self.autonomousCommand:
|
|
self.autonomousCommand.schedule()
|
|
|
|
def autonomousPeriodic(self) -> None:
|
|
"""This function is called periodically during autonomous"""
|
|
|
|
def teleopInit(self) -> None:
|
|
# This makes sure that the autonomous stops running when
|
|
# teleop starts running. If you want the autonomous to
|
|
# continue until interrupted by another command, remove
|
|
# this line or comment it out.
|
|
if self.autonomousCommand:
|
|
self.autonomousCommand.cancel()
|
|
|
|
def teleopPeriodic(self) -> None:
|
|
"""This function is called periodically during operator control"""
|
|
|
|
def utilityInit(self) -> None:
|
|
# Cancels all running commands at the start of utility mode
|
|
commands2.CommandScheduler.getInstance().cancelAll()
|