This repository has been archived on 2025-06-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
compLIB/oldLib/Command.py
Konstantin Lampalzer b5a60438c0
add motor class
2021-01-15 18:22:50 +01:00

13 lines
305 B
Python

class COMMAND:
CMD_MOTOR = "CMD_MOTOR"
CMD_LED = "CMD_LED"
CMD_LED_MOD = "CMD_LED_MOD"
CMD_SERVO = "CMD_SERVO"
CMD_BUZZER = "CMD_BUZZER"
CMD_SONIC = "CMD_SONIC"
CMD_LIGHT = "CMD_LIGHT"
CMD_POWER = "CMD_POWER"
CMD_MODE = "CMD_MODE"
def __init__(self):
pass