Skip to content

Commit

Permalink
Inverts figurines endpoint.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucashicks1 committed Oct 25, 2023
1 parent 12f58d9 commit d6cf229
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db-handler/app/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d6cf229

Please sign in to comment.