doc: drop features that won't be implemented for first release

Combined with previous comments, this closes #91
This commit is contained in:
Laurens Valk
2019-01-18 17:19:19 +01:00
parent de8d91df4b
commit daa213b003
4 changed files with 3 additions and 79 deletions
+2 -24
View File
@@ -149,8 +149,8 @@ class Direction():
"""
clockwise = 1
counterclockwise = -1
clockwise = 0
counterclockwise = 1
class Button(Enum):
@@ -194,28 +194,6 @@ class Button(Enum):
right_up = 9
class Pattern():
"""Standard light patterns."""
solid = [(100, 1000)]
"""The light stays on."""
blink1 = [(100, 500), (0, 500)]
"""The light blinks once per second: It stays on for 500 ms and then stays off for 500 ms."""
blink2 = [(100, 250), (0, 250)]
"""The light blinks twice per second: It stays on for 250 ms and then stays off for 250 ms."""
blink3 = [(100, 167), (0, 167)]
"""The light blinks three times per second: It stays on for 167 ms and then stays off for 167 ms."""
glow = [] # TODO
"""The light gradually turns on and then off again, as if glowing. (TODO)"""
ev3 = [(100, 100), (0, 100), (100, 100), (0, 700)] # TODO: Get the true values
"""The default pattern of a running EV3-G program."""
class Align():
"""Alignment of an image on a screen. TODO: use same logic as buttons??