Update supported functions to fit into the latest WiringPi
Signed-off-by: Yang Deokgyu <secugyu@gmail.com>
diff --git a/constants.py b/constants.py
index f501698..104b62a 100644
--- a/constants.py
+++ b/constants.py
@@ -12,11 +12,13 @@
INPUT = 0;
OUTPUT = 1;
-PWM_OUTPUT = 2;
-GPIO_CLOCK = 3;
-SOFT_PWM_OUTPUT = 4;
-SOFT_TONE_OUTPUT = 5;
-PWM_TONE_OUTPUT = 6;
+INPUT_PULLUP = 2;
+INPUT_PULLDOWN = 3;
+PWM_OUTPUT = 4;
+GPIO_CLOCK = 5;
+SOFT_PWM_OUTPUT = 6;
+SOFT_TONE_OUTPUT = 7;
+PWM_TONE_OUTPUT = 8;
LOW = 0;
HIGH = 1;