001/************************* PROJECT RON *************************/ 002/* Copyright (c) 2026 StuyPulse Robotics. All rights reserved. */ 003/* Use of this source code is governed by an MIT-style license */ 004/* that can be found in the repository LICENSE file. */ 005/***************************************************************/ 006package com.stuypulse.robot.commands.feeder; 007 008import com.stuypulse.robot.subsystems.feeder.Feeder.FeederState; 009 010public class FeederSetIdle extends FeederSetState { 011 012 public FeederSetIdle() { 013 super(FeederState.IDLE); 014 } 015}