An implementation of a retro Finnish reaction game in Elixir.
Find a file
2022-10-08 18:04:12 +03:00
config Calculate correct delay for pro game 2022-10-08 18:04:12 +03:00
lib Calculate correct delay for pro game 2022-10-08 18:04:12 +03:00
priv/static Add Phoenix LiveView score display page and LV dashboard 2020-05-22 11:22:57 +03:00
rel Initial commit 2020-03-08 22:14:51 +02:00
rootfs_overlay/etc Initial commit 2020-03-08 22:14:51 +02:00
test Initial commit 2020-03-08 22:14:51 +02:00
.formatter.exs Initial commit 2020-03-08 22:14:51 +02:00
.gitignore Implement brightness setting and fix bugz 2021-11-04 20:15:22 +02:00
.tool-versions Bring back from the dead 2021-10-19 19:33:55 +03:00
LICENSE Add LICENSE 2022-10-06 18:01:28 +00:00
mix.exs Calculate correct delay for pro game 2022-10-08 18:04:12 +03:00
mix.lock Change to using Blinkchain to control NeoPixels 2021-11-03 22:39:12 +02:00
README.md Initial commit 2020-03-08 22:14:51 +02:00
Score-delay chart.fods Calculate correct delay for pro game 2022-10-08 18:04:12 +03:00
upload.sh Initial commit 2020-03-08 22:14:51 +02:00

ExSpeedGame

TODO: Add description

Targets

Nerves applications produce images for hardware targets based on the MIX_TARGET environment variable. If MIX_TARGET is unset, mix builds an image that runs on the host (e.g., your laptop). This is useful for executing logic tests, running utilities, and debugging. Other targets are represented by a short name like rpi3 that maps to a Nerves system image for that platform. All of this logic is in the generated mix.exs and may be customized. For more information about targets see:

https://hexdocs.pm/nerves/targets.html#content

Getting Started

To start your Nerves app:

  • export MIX_TARGET=my_target or prefix every command with MIX_TARGET=my_target. For example, MIX_TARGET=rpi3
  • Install dependencies with mix deps.get
  • Create firmware with mix firmware
  • Burn to an SD card with mix firmware.burn

Learn more