esrom/morse/lib/morse.ex

14 lines
255 B
Elixir
Raw Normal View History

2019-07-14 13:05:45 +00:00
defmodule Morse do
@moduledoc """
Functions to control the signal lamp connected with GPIO.
"""
@doc """
Takes a string composed of dots and dashes, and signals them with the
signal lamp.
"""
def signal(msg) do
IO.puts(msg)
end
end