legoEv3/ev3dev2/_platform/evb.py


"""
An assortment of classes modeling specific features of the EVB.
"""

OUTPUT_A = 'outA'
OUTPUT_B = 'outB'
OUTPUT_C = 'outC'
OUTPUT_D = 'outD'

INPUT_1 = 'in1'
INPUT_2 = 'in2'
INPUT_3 = 'in3'
INPUT_4 = 'in4'

BUTTONS_FILENAME = '/dev/input/by-path/platform-evb-buttons-event'
EVDEV_DEVICE_NAME = 'evb-input'

# EVB does not have LEDs
LEDS = {}
LED_GROUPS = {}
LED_COLORS = {}