Elixir ALE Dummy
A dummy implementation of ElixirALE. It allows applications to run on hardware without GPIOs.
Installation
Add elixir_ale_dummy to the list of dependencies in mix.exs. When using Nerves, restrict this package to the "host" target.
def deps("host") do
[
{:elixir_ale_dummy, "~> 0.1.2"}
]
endStart the simulator by adding the following to your startup code:
if Mix.Project.config()[:target] == "host" do
ElixirALEDummy.start(8080)
endVisit http://localhost:8080 to view the state of the GPIOs.