RFID tag game
Find a file
2018-05-10 16:36:04 +03:00
config Refactor so that player/respawn is dynamically chosen 2018-05-10 16:36:04 +03:00
lib Refactor so that player/respawn is dynamically chosen 2018-05-10 16:36:04 +03:00
rel DB autogenerated, nodes autoconnect, mnesia is up, WOOOOOOOOOOO 2017-11-05 01:03:39 +02:00
ssh DB autogenerated, nodes autoconnect, mnesia is up, WOOOOOOOOOOO 2017-11-05 01:03:39 +02:00
test Initial commit 2017-10-24 20:42:02 +03:00
.formatter.exs Preliminary setup, networking, SSH, code formatting 2017-11-04 10:25:04 +02:00
.gitignore Refactor so that player/respawn is dynamically chosen 2018-05-10 16:36:04 +03:00
.on-save.json Autoformat config 2017-11-04 14:21:10 +02:00
mix.exs Refactor so that player/respawn is dynamically chosen 2018-05-10 16:36:04 +03:00
mix.lock.host Refactor so that player/respawn is dynamically chosen 2018-05-10 16:36:04 +03:00
mix.lock.rpi Refactor so that player/respawn is dynamically chosen 2018-05-10 16:36:04 +03:00
mix.lock.rpi0 DB autogenerated, nodes autoconnect, mnesia is up, WOOOOOOOOOOO 2017-11-05 01:03:39 +02:00
mix.lock.rpi2 Refactor so that player/respawn is dynamically chosen 2018-05-10 16:36:04 +03:00
README.md Initial commit 2017-10-24 20:42:02 +03:00
UNLICENSE Add 'license' 2017-10-24 20:43:33 +03:00

DuckTag

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