This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Servo.h> | |
#define second 1000 | |
#define minute 60000 | |
#define hour 3600000 | |
Servo servo; | |
const int servoPin = 9; | |
const int buttonDispensePin = 7; | |
const int buttonMinusPin = 6; | |
const int buttonPlusPin = 8; |