Question about continue running #1943
-
First of all, I would like to special shout-out for Pybricks. Our team passed the regional round as first place. We use beta python code and it is very stable. My daughter also love Pybricks very much compare with block coding. She feels easier to code. My question is regarding the continue running of robot without stop after every session (straight, turn), I tried to use then=Stop.NONE but look like it does not work. Or should I slow down the speed to make it run smoother? Below is the code I use
Video.mov |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Thank you!
We try to be on the edge of what's possible, but we're still bound by the laws of physics 😄
With |
Beta Was this translation helpful? Give feedback.
Thank you!
We try to be on the edge of what's possible, but we're still bound by the laws of physics 😄
then=Stop.NONE
works best when you combinestraight
with acurve
. Then it can keep its forward speed as it makes the curve.With
turn
, it will try to turn in place, and thus abruptly slow down to achieve that.