Commit 1e48c54e authored by Antonio Caceres's avatar Antonio Caceres
Browse files

Replace placeholder code with '...'.

parent ef251764
No related merge requests found
Showing with 5 additions and 5 deletions
+5 -5
...@@ -34,4 +34,4 @@ def translate_message(morse: str) -> str: ...@@ -34,4 +34,4 @@ def translate_message(morse: str) -> str:
encountered, they are ignored. If the last potential symbol is not encountered, they are ignored. If the last potential symbol is not
valid, it is appended as is (i.e., as dots and dashes). valid, it is appended as is (i.e., as dots and dashes).
""" """
return None ...
...@@ -25,7 +25,7 @@ def set_color(elapsed_t: float, px: LEDController): ...@@ -25,7 +25,7 @@ def set_color(elapsed_t: float, px: LEDController):
elapsed_t (float): duration of proximity detection. elapsed_t (float): duration of proximity detection.
px : LED controller object. px : LED controller object.
""" """
pass ...
def add_mark(elapsed_t: float) -> str: def add_mark(elapsed_t: float) -> str:
...@@ -39,7 +39,7 @@ def add_mark(elapsed_t: float) -> str: ...@@ -39,7 +39,7 @@ def add_mark(elapsed_t: float) -> str:
Returns: Returns:
str: dot (.), dash (-), or empty (""). str: dot (.), dash (-), or empty ("").
""" """
pass ...
def run_morse_engine(apds: ProximitySensor, pixels: LEDController, touch: TouchSensor): def run_morse_engine(apds: ProximitySensor, pixels: LEDController, touch: TouchSensor):
......
...@@ -17,7 +17,7 @@ def prox_pulse(px: LEDController, color: tuple[int, int, int], prox: int) -> Non ...@@ -17,7 +17,7 @@ def prox_pulse(px: LEDController, color: tuple[int, int, int], prox: int) -> Non
color (tuple): color to pulse. color (tuple): color to pulse.
prox (int): proximity value. prox (int): proximity value.
""" """
pass # Delete this line when you start coding! ...
def run_prox_pulse(apds: ProximitySensor, pixels: LEDController) -> None: def run_prox_pulse(apds: ProximitySensor, pixels: LEDController) -> None:
......
...@@ -16,7 +16,7 @@ def pulse(px: LEDController, color: tuple[int, int, int], duration: float): ...@@ -16,7 +16,7 @@ def pulse(px: LEDController, color: tuple[int, int, int], duration: float):
color (tuple): Color to display. color (tuple): Color to display.
duration (float): time in seconds to keep the color on/off. duration (float): time in seconds to keep the color on/off.
""" """
pass # Delete this line when you start coding! ...
def run_simple_pulse(pixels: LEDController): def run_simple_pulse(pixels: LEDController):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment