hey all, newbie arduino world here. i'm working on building automated liquor dispenser , i'm wondering if code work way want to. arduino uno in mail , won't here till friday or so, , wanted try work out as possible beforehand, it's plug-and-play. it's pretty simple: 3 buttons control amount dispensed (single, double, or triple ["1x", "2x", , "3x" in code, respectively]) 1 button act "safety switch" liquor dispense when glass on pad ("pad" in code) 3 led's (one each mode ["1xled", "2xled", "3xled" in code]) a pump dispense liquor ("pump" in code) an lcd display show messages based upon given actions ("lcd" in code) any appreciated, , glad elaborate further if need be. code: [select] #include <liquidcrystal.h> #include <stepper.h> int 1xstate = 0, 2xstate = 0, 3xstate = 0, padstate = 0; int 1xledstate = 0, 2xledstate = 0, 3xledstate = 0; const ...