diff --git a/db-handler/app/constants.py b/db-handler/app/constants.py index 425334b..be15b6f 100644 --- a/db-handler/app/constants.py +++ b/db-handler/app/constants.py @@ -25,5 +25,5 @@ LOGGER_TIME_FORMAT = '%I:%M:%S %p' # Values for microcontroller and servos/actuators -FREE = 0 # 0 is sent to the microcontroller if user is not busy -BUSY = 1 # 1 is sent to the microcontroller if user is busy +FREE = 1 # 1 is sent to the microcontroller if user is not busy +BUSY = 0 # 0 is sent to the microcontroller if user is busy