Skip to content

Instantly share code, notes, and snippets.

@CWrecker
Created March 31, 2019 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CWrecker/0533e8f51c555416075f6babe907eca4 to your computer and use it in GitHub Desktop.
Save CWrecker/0533e8f51c555416075f6babe907eca4 to your computer and use it in GitHub Desktop.
These variables are the characteristics of any given drink. Changing these will change the drink produced. These are also the values that are sent to the arduino in a string of numbers. (i call that the DrinkID)
Dialog myDialog;
String DrinkName="A Drink"; //Note these strings should never appear
String DrinkType="A Drink Type"; //Note these strings should never appear
public int Vodka_Measure;
public int Rum_Measure;
public int Gin_Measure;
public int Whiskey_Measure;
public int TonicWater_Measure;
public int CranberryJuice_Measure;
public int OrangeJuice_Measure;
public int Pineapple_Measure;
public int Mint_Measure;
public int Sugar_Measure;
public int Lime_Measure;
public int Lime_Slice;
public int Stir;
public int Mash;
//Human Functions
public int Ice_Measure;
public int Shake;
public int Kalua;
public int Cointreau;
public int Vermouth;
public int Peach_Schnapps;
public int Cream_De_Cacao;
public String DrinkSizeText;
public int DrinkSize;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment