Quarky 2 Wheel Drive Horizontal Robot

Description
Learn how to assemble and program the Quarky 2-Wheel Horizontal Robot using block coding or Python coding. Explore the world of robotics and create exciting projects with Quarky!

Introduction

Quarky 2-wheel drive horizontal robot is the standard configuration that is provided in the Quakry Innovator Kit and Quarky Ultimate Kit.

In this robot, 2 active motors are controlling the wheels and one passive castor wheel. Using the motors, you can make the robot go forward, backward, left, and right easily.

Wirelessly-Controlled-Robot-1

Assembly

Follow the steps to assemble the 2 Wheel Horizontal Robot:

  1. We will start with the bare Quarky board. Mount the Motor to the Quarky board on the back side using M2 bolts and Motor Bracket as shown in the image:
    Note:  Tighten the Bolts using the Screwdriver provided in the kit.
  2. Attach the Motor Connectors on Quarky’s Motor Ports on the backside. Make sure you attach the Motors to the corresponding pins: Red is Left and Blue is Right.
  3. Attach the wheels to the motor as shown in the image:
  4. Attach the Castor Wheel using two Spacers and the M2.5 Bolt.
  5. Insert the Battery in the Battery Connector of Quarky and place it on the backside. Keep the red wire on the right side.
  6. Assemble the Plastic Mounting Parts.
    1. Snap the Battery Holder on the Bottom of the Robot as shown in the image.
    2. Snap the Battery Holder Lock on top of the Battery Holder matching the lock as shown in the image.

Your 2-wheel Horizontal Robot is ready!

Programming Blocks for the Robot

Note:  For programming the Quarky, you have to first connect it with PictoBlox. Follow the tutorial to connect it: https://ai.thestempedia.com/docs/getting-started-with-quarky/

We will use the Robot palette from Quarky to control the robot.

The following programming blocks can be used for the Horizontal Robot in PictoBlox block coding mode:

The block moves the Quarky robot in the specified direction. The direction can be “FORWARD”, “BACKWARD”, “LEFT”, and “RIGHT”.
The block moves the Quarky robot in the specified direction for the specified time. The direction can be “FORWARD”, “BACKWARD”, “LEFT”, and “RIGHT”.
The block stops both the motors of the Quarky robot.
The block initializes the following line parameters for the Quarky robot – F. T1 and T2.
The block performs the automatic line following logic with the parameters specified in the set parameter F () T1 () T2 () block.
The block sets the orientation of the robot to align the left and right movement of the robot in horizontal robot position and vertical robot position.
The block sets the specified motor of the Quarky robot to the specified direction (“FORWARD” or “BACKWARD”) and specified speed.
The function stops the specified motor of the Quarky.
All articles loaded
No more articles to load

Python Functions for the Robot

We will use the Quarky class to program the robot. The following Python Functions can be used for the Horizontal Robot in PictoBlox Python coding mode:

The function moves the Quarky robot in the specified direction. The direction can be “FORWARD”, “BACKWARD”, “LEFT”, and “RIGHT”.
Syntax: runrobot(direction = “FORWARD”, speed = 100)
The function moves the Quarky robot in the specified direction for the specified time. The direction can be “FORWARD”, “BACKWARD”, “LEFT”, and “RIGHT”.
Syntax: runtimedrobot(direction = “FORWARD”, speed = 100, time = 1)
The function stops both the motors of the Quarky robot.
Syntax: stoprobot()
The function sets the orientation of the robot to align the left and right movement of the robot in horizontal robot position and vertical robot position.
Syntax: setorientation(orientation = “HORIZONTAL”)
The function sets the specified motor of the Quarky robot to the specified direction (“FORWARD” or “BACKWARD”) and specified speed.
Syntax: runmotor(motor = “L”, direction = “FORWARD”, speed = 100)
The function stops the specified motor of the Quarky.
Syntax: stopmotor(motor = “L”)
All articles loaded
No more articles to load

Wirelessly Controlled Robot Project – Block Coding

The example demonstrates how to control the motion of the robot using keyboard keys:

Wirelessly-Controlled-Robot-1

Script

The following script makes the Robot go forward, backward, left, and right according to the key pressed on the keyboard or the PictoBlox App.

Download Program: Wirelessly Controlled Robot

Wirelessly Controlled Robot – Python Coding

The example demonstrates how to control the motion of the robot using keyboard keys in the Python Coding Environment.

Python Code

sprite = Sprite('Tobi')
quarky = Quarky()

while True:
  
  if sprite.iskeypressed("up arrow"):
    quarky.runrobot("FORWARD", 50)
  elif sprite.iskeypressed("down arrow"):
    quarky.runrobot("BACKWARD", 50)
  elif sprite.iskeypressed("left arrow"):
    quarky.runrobot("LEFT", 50)
  elif sprite.iskeypressed("right arrow"):
    quarky.runrobot("RIGHT", 50)
  else:
    quarky.stoprobot()

Download Code: Wirelessly Controlled Robot – Python

Conclusion

In conclusion, Quarky 2wheel drive horizontal robot is an easy-to-assemble and programmed robot that can be used to easily move forward, backward, left, and right. Through block coding, it is possible to control the robot‘s movements with keyboard keys, while Python coding allows for more complex programming. With the Quarky robot, users can explore the world of robotics and create exciting projects.

Table of Contents