[Feature] Step by Step debugger/breakpoints for Prime Hub
Is your feature request related to a problem? Please describe.
When my team and I test code for FLL or WRO we sometimes want to check where the roboter os located on the field after a specific part. We've used a raise KeyboardInterrupt for that but we'd lie a way to resume the run after without having to copy & paste every single line of code into the terminal.
Describe the solution you'd like SOme way to set Breakpoints in the code like VSCode does it and whenever a breakpoint is hit you coild show some buttons to step forward a line or continue to the next breakpoint. Maybe a button to step into custom functions to see what they're doing but thats not as important.
Describe alternatives you've considered
A way to restart the program after a KeyboardInterrupt was raised.