Dependencies:   mbed Motor mbed-rtos

Useless Robot

Useless Robot Overview

Project by Austin Bartmess and Jeremy Deremer

This is a robot developed on an ARM Microcontroller (LPC 1768). It uses a servo, two DC motors both powered by an external power source, nine red LEDs, two RBG LEDs, a speaker, a toggle switch and a transistor.

The goal of this robot is to stay off. However, the user can turn it on without harm. It attempts to stay off via turning a toggle switch off with an arm attached to a servo. If the robot is turned on too much, it will progressively get angry. It starts by not smiling and changing eye colors. Following that, the robot will frown and yell at the user. Finally, the robot will drive around randomly while screaming and looking angry via its LEDs.

Required Parts

  • mbed Microcontroller x1
  • USB to mini USB cable x1
  • Servo x1
  • H-Bridge Breakout Board x1
  • DC Motors x2
  • DC Motor Wheels x4
  • Red LEDs x9
  • RGB LEDs x2
  • 0.5W Speaker x1
  • Toggle Switch x1
  • BJTransistor x1
  • Jumper Cables Kit x1
  • Breadboard x2

Pinout and Connections

MbedH-BridgeDC MotorsServoTransistorSpeakerLEDsBarrel JackToggle Switch
GNDGND(-)Emitter(-)GND(-)(-)
Vu
VinVm(+)(+)
VoutVcc, /STBY(+)
p5AIN1
p6AIN2
p10LED+
p11LED+
p12LED+
p15Control
p21PWMA
p22Collector
p23Blue
p24Green
p25Red
p26Control
AO1(+)
AO2(-)

/media/uploads/jderemer3/capture.png

Demo Clip

Source Code

Import program4180_FinaProject

main.cpp

Committer:
arb
Date:
2017-04-26
Revision:
1:0402db7e91f5
Parent:
0:4931c25e1cf7
Child:
2:69a3683834c7

File content as of revision 1:0402db7e91f5:

#include "mbed.h"
#include "rtos.h"
#include "RGBLed.h"
#include "uLCD_4DGL.h"
 
DigitalOut led1(LED1);
DigitalOut led2(LED2);
DigitalOut led3(LED3);
DigitalOut led4(LED4);

// RGBLed myRGBled(p21,p22,p23); //RGB PWM pins

InterruptIn Switch(p15);

PwmOut red(p21);
PwmOut green(p22);
PwmOut blue(p23);

uLCD_4DGL uLCD(p9, p10, p11);

Thread t1; // Arm Response
Thread t2; // LED Color
Thread t3; // Speaker Music / Audio
Thread t4; // Motor Control

Mutex state;
int angerlevel;

bool pushFlag = false;
 
void ArmThread() 
{
    //basic if switch is toggled then use arm to turn it off
    //Want to add delay depedning on anger level
    //Potentially need a queue system
    if (pushFlag)
    {
        //start servo
        state.lock();   //lock to update the anger level
        angerlevel++;
        state.unlock();
    }
}

void LEDThread() {
    state.lock();   //lock to read the angerlevel
    switch(angerlevel)
        case 1:
            state.unlock();
            //turn on leds
            break;
        case 2:
            state.unlock();
            //LEDS/AUDIO
            break;
        case 3:
            state.unlock();
            //LEDS/AUDIO/motor
            break;
        default:
            state.unlock();
            //case 0 do nothing
            break;
    state.unlock();
}

void AudioThread() {
    //PWM/AMP? to play audio?
    //need to get sd card & angry sounds for audio
    state.lock();   //lock to read the angerlevel
    switch(angerlevel)
        case 2:
            state.unlock();
            //AUDIO
            break;
        case 3:
            state.unlock();
            //AUDIO/MOTOR
            break;
        default:
            state.unlock();
            //Nothing to do here
            break;
    state.unlock();
}

void WheelsThread() {
    //Drive around randomly
    state.lock();   //lock to read the angerlevel
    switch(angerlevel)
        case 3:
            state.unlock();
            //MOTOR
            break;
        default:
            state.unlock();
            //nothing
            break;
    state.unlock();
}

 
void fallInterrupt(){
    pushFlag=true;
}

void init(){
    interrupt.fall(&fallInterrupt);
    interrupt.mode(PullUp); 

}

int main() {
    init();
        
    t1.start(ArmThread);
    t2.start(LEDThread);
    t3.start(AudioThread);
    t4.start(WheelsThread);
    
}