PSA: RobotPy 2020 upgrade notes

Hopefully this will help you as you upgrade to RobotPy 2020:

https://robotpy.readthedocs.io/en/latest/2020_notes.html

Thanks!

1 Like

Thank you for this. Do you recommend calling the super constructor every time we inherit from wpilib, or only when we create child classes?

We are not using the command framework, and are currently using timed robot, so things are a bit more straightforward for us. However, we are getting into more advanced autonomous routines this year so we may go with a different framework as we progress.

~Mr. R^2

Anytime you inherit from a RobotPy pybind object (for simplicity, you can assume they all are), and you have an __init__ function of your own, you must call the super __init__ otherwise bad things will eventually happen.

However, if you don’t have your own __init__, there is no need to add one, as python will call the base automatically.

1 Like

I’ve updated the notes with specific examples regarding inheritance.

1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.