Automatic Cocktail Maker

A smart, voice controlled cocktail machine.

ECE 4180 - Embedded Systems Design - Section A
Marius Petrut mpetrut3@gatech.edu
Gianni Saporiti saporiti@gatech.edu
Chenkai Shao cshao31@gatech.edu


Introduction

This project is an MBed and .NET -based cocktail machine that can be controlled either by voice or using a touchscreen interface. Solenoid valves and silicone tubing are used control the flow of liquid. The system has no pumps, so the pressure is provided by gravity only. This prototype has only three valves, but it can be extended to support many more with the appropriate frame. The valves can be controlled manually through the touchscreen interface and also by selecting previously saved cocktail recipes. A small 7" Windows tablet provides a touchscreen interface. The voice recognition and voice synthesis are provided by the .NET API.

Gallery


Features

Voice controlled
Speech synthesis feedback
Multitouch user interface
Select, save, delete cocktail recipes
Light effects using Shiftbrite LEDs
Distance sensor for proximity detection

Parts List


This is a list of parts used for this project:

1.  Mbed LPC1768 available from Sparkfun
2.  Windows Tablet. We used the HP Stream 7 purchased for around $75
3.  3 x Food Safe Solenoid Valves available from Trossen Robotics
4.  3 x RobotGeek Relay #ASM-RG-RELAY (Trossen Robotics)
5.  3 x Shiftbrite High-Brightness LED Module (Sparkfun)
6.  2 ft White Silicone Tube 3/16"ID, 1/4"OD, 1/32" Wall (Amazon)
7.  3 x Bottle Pourers with Tapered Spout (Amazon)
8.  1in x 10in x 6ft Common Wood Board (Home Depot)
9.  12 oz. All Surface Hammered Black Spray Paint and Primer in One (Home Depot)
10. 1 x 12V 1A DC Power Supply
11. 1 x 5V 1A DC Power Supply
12. Small PC Speakers. We used some AmazonBasics cheap speakers (Amazon)
13. Infrared Proximity Sensor - Sharp GP2Y0A21YK (Sparkfun)

Mbed LPC1768 HP Stream 7 Trossen Robotics Solenoid Valves
     
RobotGeek Relay Shiftbrite LED Sharp IR Distance Sensor

Wiring Diagram


Here is a wiring diagram of the project. The Shiftbrites were connected together in series with one of them interfaced with the MBed through SPI. The relays were controlled by the MBed using DigitalOut, and the valves were turned on and off using the relays. The distance sensor was connected to an AnalogIn port on the MBed. The tablet and the MBed were interfaced through USB using the virtual Com port feature. The onboard microphone on the HP Stream was used for voice recognition and the computer speakers were used for voice feedback. Two separate power supplies were needed, a 12V one to power all the valves, and a 5V supply to power the Shiftbrites, relays, IR distance sensor, and computer speakers. This way, the small tablet battery only had to power the Mbed and nothing else.

.NET Code and User Interface


The entire Visual Studio WPF .NET project is available on Github at https://github.gatech.edu/mpetrut3/CocktailBot. After cloning the repository, make sure to change the serial Com port to the correct value. The Mbed port name can be found in Device Manager in Windows.
The voice recognition and speech synthesis engines were provided by the System.Speech namespace. Communication to the Mbed was done using the SerialPort class.
Below you can see screenshots of the user interface. The UI supports multitouch for manually engaging more than one valve at a time using the buttons.

Mbed Code


Below is the code listing for the Mbed code. The MBed RTOS library needs to be imported since it provides support for multiple threads. The timer for each valve is started on different threads and a condition signal is used to let the main function know when all the valves turned off. The serial communication format is picture below.

A 'g' character received from the tablet signals MBed that the valve timer values are being sent next. The first three characters represent the timer value of the first valve, the second set of three characters represent the value of the second valve, and so on.

// Automatic Cocktail Maker

#include "mbed.h"
#include "rtos.h"
 
DigitalOut valve1(p15);
DigitalOut valve2(p16);
DigitalOut valve3(p17);

AnalogIn distSensor(p19);

DigitalOut led1(LED1);
DigitalOut led2(LED2);
DigitalOut led3(LED3);

DigitalOut latch(p8);
DigitalOut enable(p9);

SPI sBrite(p11, p12, p13);

Serial pc(USBTX, USBRX);

int vTime[3];
bool t_enabled, distSens_on = true;
osThreadId mainThreadID;

// Valve 1 Timer Thread
void thread1(void const *args) {
    while(1) {
        if(t_enabled) {
            valve1 = 1; led1 = 1;
            int waitTime = (int)(vTime[0] * 100);
            Thread::wait(waitTime);
            valve1 = 0; led1 = 0;
            t_enabled = false;
            osSignalSet(mainThreadID, 0x1);
        }
    }
}

// Valve 2 Timer Thread
void thread2(void const *args) {
    while(1) {
        if(t_enabled) {
            valve2 = 1; led2 = 1;
            int waitTime = (int)(vTime[1] * 100);
            Thread::wait(waitTime);
            valve2 = 0; led2 = 0;
            t_enabled = false;
            osSignalSet(mainThreadID, 0x2);
        }
    }
}

// Valve 3 Timer Thread
void thread3(void const *args) {
    while(1) {
        if(t_enabled) {
            valve3 = 1; led3 = 1;
            int waitTime = (int)(vTime[2] * 100);
            Thread::wait(waitTime);
            valve3 = 0; led3 = 0;
            t_enabled = false;
            osSignalSet(mainThreadID, 0x4);
        }
    }
}

// Shiftbrite light effects
void thread4(void const *args) {

    int red=0;
    int green=0;
    int blue=0;
    sBrite.format(16,0);
    sBrite.frequency(500000);
    enable=0;
    latch=0;
    Thread::wait(2000);

    unsigned int low_color=0;
    unsigned int high_color=0;
     
    while(1) {
        for (red = 0; red<1000; red += 200) {
            for (green = 0; green<1000; green += 200) {
                for (blue = 0; blue<1000; blue += 200)
                {
                    low_color=0;
                    high_color=0;
                    high_color=(blue<<4)|((red&0x3C0)>>6);
                    low_color=(((red&0x3F)<<10)|(green));
                    sBrite.write(high_color);
                    sBrite.write(low_color);
                    Thread::wait(0.02);
                    latch=1;
                    Thread::wait(0.02);
                    latch=0;
                    Thread::wait(250);
                }
            }
        }
    }
}

// Distance sensor trigger
void thread5(void const *args) {
    while(1) {
        if(distSensor > 0.1 && distSens_on) {
            Thread::wait(50);
            if(distSensor > 0.1 && distSens_on) {
                Thread::wait(50);
                if(distSensor > 0.1 && distSens_on) {
                    pc.putc('l');
                    distSens_on = false;
                }
            }
        }
        Thread::wait(500);
    }
}

int main() {
    
    mainThreadID = osThreadGetId();
    Thread t1(thread1);
    Thread t2(thread2);
    Thread t3(thread3);
    Thread t4(thread4);
    Thread t5(thread5);
    t_enabled = false;
    char message;
    char msg[10];
    char m[4];

    int i;
    
    // Main serial communication loop
    while(1) {
        if(pc.readable()) {
            message = pc.getc();
            if(message=='g') {
                i=0;
                while(i<10) {
                    if(pc.readable()) {
                        msg[i] = pc.getc();
                        i++;
                    }
                }
                sprintf(m, "%.4s", msg);
                vTime[0] = atoi(m);

                sprintf(m, "%.3s", msg+4);
                vTime[1] = atoi(m);

                sprintf(m, "%.3s", msg+7);
                vTime[2] = atoi(m);

                t_enabled = true;
                osSignalWait(0x7, osWaitForever);
                
                // Signal the PC that all solenoids turned off
                pc.putc('j');
            }
            if(message=='a') {
                valve1 = 1; led1 = 1;
            }
            if(message=='b') {
                valve1 = 0; led1 = 0;
            }
            if(message=='c') {
                valve2 = 1; led2 = 1;
            }
            if(message=='d') {
                valve2 = 0; led2 = 0;
            }
            if(message=='e') {
                valve3 = 1; led3 = 1;
            }
            if(message=='f') {
                valve3 = 0; led3 = 0;
            }
            if(message=='h') {
                distSens_on = true;
            }
        }
    }
} 

About

We designed this machine as the final project assignment in the ECE 4180 Embedded Systems Design class at Georgia Institute of Technology.
© 2015

Contact

Marius Petrut mpetrut3@gatech.edu
Gianni Saporiti saporiti@gatech.edu
Chenkai Shao cshao31@gatech.edu