Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chmanie/hello_blinky
Elixir nerves blinking example
https://github.com/chmanie/hello_blinky
Last synced: 28 days ago
JSON representation
Elixir nerves blinking example
- Host: GitHub
- URL: https://github.com/chmanie/hello_blinky
- Owner: chmanie
- Created: 2018-02-11T22:57:37.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-11T23:01:49.000Z (almost 7 years ago)
- Last Synced: 2024-10-07T21:02:15.913Z (about 1 month ago)
- Language: Elixir
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HelloBlinky
**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
* Official docs: https://hexdocs.pm/nerves/getting-started.html
* Official website: http://www.nerves-project.org/
* Discussion Slack elixir-lang #nerves ([Invite](https://elixir-slackin.herokuapp.com/))
* Source: https://github.com/nerves-project/nerves