We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f874979 commit faed1ceCopy full SHA for faed1ce
ev3dev/brickpi.py
@@ -29,6 +29,17 @@
29
from .core import *
30
31
32
+OUTPUT_A = 'ttyAMA0:outA'
33
+OUTPUT_B = 'ttyAMA0:outB'
34
+OUTPUT_C = 'ttyAMA0:outC'
35
+OUTPUT_D = 'ttyAMA0:outD'
36
+
37
+INPUT_1 = 'ttyAMA0:in1'
38
+INPUT_2 = 'ttyAMA0:in2'
39
+INPUT_3 = 'ttyAMA0:in3'
40
+INPUT_4 = 'ttyAMA0:in4'
41
42
43
class Leds(object):
44
"""
45
The BrickPi LEDs.
ev3dev/ev3.py
+OUTPUT_A = 'outA'
+OUTPUT_B = 'outB'
+OUTPUT_C = 'outC'
+OUTPUT_D = 'outD'
+INPUT_1 = 'in1'
+INPUT_2 = 'in2'
+INPUT_3 = 'in3'
+INPUT_4 = 'in4'
The EV3 LEDs.
0 commit comments