FlameWheel_Robot_SKU__ROB0139-DFRobot

Introduction

This flame wheel robot is a two-wheeled robot laser cut from 3mm MDF. It is designed using Luban lock assembly to use as few screws as possible allowing a very easy assembly process for younger users, while being beneficial to developing logical thinking. This product has agile mobility using two wheels, with humorous and fun movement patterns. The unit can be expanded with other DFRobot modules and can be used in a number of different user scenarios, including education.

Specification

Tutorial

Materials:

Hardware

Software

Frame Assembly

Refer to the Flame Wheel Vehicle Instruction for frame assembly

  1. Route wires through assembly as pictured:

    <File:Wire> Routing1.png

<File:Wire> Routing2.png

  1. After installing the frame, connect motor and power wires

    <File:Connections.png>

Connect a USB cable and upload the following code to your Flamewheel using Arduino IDE.

Please note you will need to install Romeo BLE Mini Arduino Library and Goble Arduino Library first.

How to install libraries?

warning_yellow.png NOTE: Because some libraries was updated in new version Arduino IDE , we suggest you using Arduino IDE 1.0.6

/* -----Flamewheel Bluetooth Control Program
//------2016.6.29 by LL
//------Suitable for Romeo BLE Mini MCU
//https://www.dfrobot.com/index.php?route=product/product&product_id=1367&search=ble+mini&description=true#.V8AR1q11Zfc
*/
#include "GoBLE.h"
#include <Romeo_m.h>

#define LED 13

//GoBLE Goble(Serial);
int joystickX, joystickY;
int buttonState[7];
unsigned int led_count;
void setup() {
  Romeo_m.Initialise();
  Goble.begin();
  pinMode(LED, OUTPUT);
}
void loop() {
  if (Goble.available())
  {
    readGoBle();
    motorContrl();
  }
  delayLedBlink();//delay 10ms and led blink
}
//Read GoBLE values
void readGoBle()
{
  // read joystick value when there's valid command from bluetooth
  joystickX = Goble.readJoystickX();
  joystickY = Goble.readJoystickY();
  // read button state when there's valid command from bluetooth
  buttonState[SWITCH_UP]     = Goble.readSwitchUp();
  buttonState[SWITCH_DOWN]   = Goble.readSwitchDown();
  buttonState[SWITCH_LEFT]   = Goble.readSwitchLeft();
  buttonState[SWITCH_RIGHT]  = Goble.readSwitchRight();
  buttonState[SWITCH_SELECT] = Goble.readSwitchSelect();
  buttonState[SWITCH_START]  = Goble.readSwitchStart();
  /*Serial.println("========================");
   Serial.print("Joystick Value: ");
  Serial.print(joystickX);
  Serial.print("  ");
  Serial.println(joystickY);
  for (int i = 1; i <= 6; i++) {
    if (buttonState[i] == PRESSED) {
      Serial.print(" ID: ");
      Serial.print(i);
      Serial.print("\t ");
      Serial.println("Pressed!");
    }
    if (buttonState[i] == RELEASED){
      Serial.print("ID: ");
      Serial.print(i);
      Serial.print("\t ");
      Serial.println("Released!");
    }
  }*/
}
//Move according to GoBLE value
//Joystick left and right to turn bends, left and right buttons to spin on the spot
void motorContrl()
{
  if ((buttonState[SWITCH_UP] == PRESSED) || ((joystickX > 128) && (joystickY >= 64) && (joystickY <= 192)))
  {
    Romeo_m.motorControl(Forward, 200, Forward, 200); //go forward
    return;//end function
  }
  if ((buttonState[SWITCH_DOWN] == PRESSED) || ((joystickX < 128) && (joystickY >= 64) && (joystickY <= 192)))
  {
    Romeo_m.motorControl(Reverse, 150, Reverse, 150); //go backwards
    return;//end function
  }
  if (buttonState[SWITCH_LEFT] == PRESSED)
  {
    Romeo_m.motorControl(Reverse, 100, Forward, 100); //turn left
    return;//end function
  }
  if ((joystickY < 128 ) && (joystickX >= 64 ) && ( joystickX <= 192) )
  {
    Romeo_m.motorControl_M1(Forward, 80); //turn left big bend
    Romeo_m.motorControl_M2(Forward, 200);
    return;//end function
  }
  if ( buttonState[SWITCH_RIGHT] == PRESSED)
  {
    Romeo_m.motorControl(Forward, 100, Reverse, 100); //turn right
    return;//end function
  }
  if ((joystickY > 128) && (joystickX >= 64) && (joystickX <= 192))
  {
    Romeo_m.motorControl_M2(Forward, 80); //turn right big bend
    Romeo_m.motorControl_M1(Forward, 200);
    return;//big bend
  }
  Romeo_m.motorStop();//no stop button is pressed
}
//led blink funtion, each execution delay 10ms. every 100 times level inverted
void delayLedBlink()
{
  delay(10);
  led_count++;
  if (led_count > 100)
  {
    digitalWrite(LED, !digitalRead(LED));
    led_count = 0;
  }
}

GoBLE APP

<File:QRGoBLE.png>

1. Scan the QR code or manually download and install GoBLE (currently supported by iOS only)

  1. After installing GoBLE, enable Bluetooth on your device and start the GoBLE app
  2. Scan for devices by clicking the magnifying glass at the top
  3. Select your device

You will now be in control!

GoBLE_instructions.png

FAQ and Troubleshooting

Q&A Some general Arduino Problems/FAQ/Tips
Q My Flamewheel doesn't go forward or backwards - it just spins. What should I do?
A Try swapping the + and - of one of the motor wires. This will reverse the direction of one motor.

For any questions or comments on this product, please contact us on the forum

More

DFshopping_car1.png Get Flamewheel - A 2WD Remote Control Robot from DFRobot Store or DFRobot Distributor.

Turn to the Top