I am loving the new code blocks. I have a few questions though.
Is there a way to run multiple motors at the same time? Last year we had to use two motors to get enough strength to hang the robot.
When you setup the drivetrain and include a gyro, do the turns incorporate the gyro automatically or is the brain just calculating the rotations to turn the desired degrees based on gear ratio and wheel size?
Will there be support for omniwheel in the drive train?
Also I recall there being a way to turn on a light on the color sensor to help it more accurately see colors in off lighting… this was possible using text based code, will that be added to the iq blocks?
what do you mean running multiple motors at the same time? just do:
motor1 start moving, motor2 start moving
wait a second
motor1 stop moving, motor 2 stop moving
using omin wheels and not using omni wheels wont have a big impact on the code.
In robot c graphical there was a set multiple motors command that would allow you move multiple motors simultaneously. This was important if you had two motors turning one axle.
I don’t know enough about the code to know if your way would have them start at slightly different times or not, maybe it doesn’t matter.
You can expand individual motor commands to have a “and don’t wait” parameter which will make multiple motors run effectively run at the same time.
If a Drivetrain is configured with a gyro, then turns will based off of the gyro heading. The gyro is automatically calibrated at the beginning of each Drivetrain program. Forward/Backwards motion is based on gear ratios and wheel sizes.
Omniwheels should not have impact the drivetrain commands - the only concern is the travel distance for forward/reverse motion.
Is there a way to assign one button to move multiple motors when programming the remote using the vex code blocks? I haven’t been able to find a way to do this?