SJSURoboticsTeam / urc-central-2021

Track progress and information for the URC 2021 competition
MIT License
1 stars 0 forks source link

Implement enum drive modes #196

Closed naterpotatoers closed 2 years ago

naterpotatoers commented 2 years ago

Might be more work than it's worth but it would be great educational experience to implement an enum class similar to the one found in arm for the drive systems drive modes. e.g.

    enum class Modes : char
    {
      kDefault = 'D',
    };

The modes we currently use are S, D, T, L, R, B = Spin, Drive, Translate, Left, Right, Back.

naterpotatoers commented 2 years ago

implemented already