Itty Bitty Buggy: Motors Tutorial (mDesigner)

From Microduino Wiki
Revision as of 19:42, 30 October 2018 by Sonny (talk | contribs) (Example 2: Spinning Buggy Base)
Jump to: navigation, search

Motors

Motor blocks are blocks which controls the motors on Buggy Base directly. This gives the user the ability to fine tune the behavior of the motors. The motors are referenced as Motor "A" or "B" depending on the side it resides. These blocks can set the movement direction of the motors (Motor - Set Speed block) or brake / stop the motors (Motor - Stop block).

Block: Set Speed

The motors speed and direction can be controlled with the Motor - Set Speed block.

Note: This block is NOT holding. Which means once the motor's speed is set, then the program will go to the next block immediately. The motor will continue to run.

Function: This block sets the speed of the selected motor.

IBB mDesigner Motor Block Set Speed.png
  • Motor - select motor (either A, B, or AB (both)).
  • Speed - rate to set the selected Motor. A value between -255 and 255. Negative values will spin the motor in reverse.
  • 0 being off
  • 127 being half speed forward.
  • 255 being full speed forward
  • -255 being full speed backward
  • -127 being half speed backward

Example 1: Turn Motor "A" on to full speed

Note: this example is can be performed in online or offline mode.

If you plan to use online mode and previously used offline mode, please follow the instructions to reset back to "online mode".

Blocks Used
Block Category Blocks
Events MDesigner When Click Green Flag block new.png Info icon.png
Buggy IBB Buggy icon.png IBB mDesigner Motor Block Set Speed NoLabels.png Info icon.png
Example

IBB mDesigner Motor Example1.png

Description: When activated, Motor "A" will turn on at full speed (255).

Example 2: Spinning Buggy Base

Note: this example is performed in offline mode Info icon.png.
Blocks Used
Block Category Blocks
Events MDesigner When Click Green Flag block new.png Info icon.png
Buggy IBB Buggy icon.png IBB mDesigner Motor Block Set Speed NoLabels.png Info icon.png
Example

IBB mDesigner Motor Example2.png

Description: When activated, the motors on Buggy Base will turn in opposite directions, which causes a spinning motion. As described below.

The following will loop forever:

  • Motor "A" (speed 255) and "Motor "B" (speed -255) are set to spin in opposite directions. This causes the Buggy Base to spin clockwise.
  • 3 second pause.
  • Motor "A" (speed -255) and "Motor "B" (255) are set to spin in opposite directions. This causes the Buggy Base to spin counter-clockwise.
  • 3 second pause.

Block: Stop

The motors can be stopped with the Motor - Stop block.

Function: This block stops the selected motor.

IBB mDesigner Motor Block Stop.png
  • Motor - select motor to stop (either A, B, or AB (both)).

Example 1: Repeatedly turn on and off Motor "A"

Note: this example is can be performed in online or offline mode.

If you plan to use online mode and previously used offline mode, please follow the instructions to reset back to "online mode".

Blocks Used
Block Category Blocks
Events MDesigner When Click Green Flag block new.png Info icon.png
Buggy IBB Buggy icon.png x50px Info icon.png
Example

IBB mDesigner Motor Example3.png

Description: When activated, Motor "A" will repeatedly turn on and off with a 1 second delay in between.