https://github.com/efesto/home_telemetry
Home telemetry collection with Nerves and Raspberry Pi
https://github.com/efesto/home_telemetry
elixir grafana nerves raspberry-pi
Last synced: 3 months ago
JSON representation
Home telemetry collection with Nerves and Raspberry Pi
- Host: GitHub
- URL: https://github.com/efesto/home_telemetry
- Owner: Efesto
- Created: 2020-12-29T15:43:15.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-08-28T10:33:43.000Z (about 3 years ago)
- Last Synced: 2025-05-21T02:08:34.623Z (5 months ago)
- Topics: elixir, grafana, nerves, raspberry-pi
- Language: Elixir
- Homepage:
- Size: 736 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HomeTelemetry
Collects and sends to an InfluxDb instance home related telemetry data like Temperature and Humidity.
Developed using [Nerves](https://www.nerves-project.org/)## Requirements:
* Asdf (everything else will come from there)
* Nerves (`mix archive.install hex nerves_bootstrap`)## Getting Started
1. `mix deps.get`
2. configure env variables specified in `.envrc-sample`
1. If using direnv, copy `.envrc-sample` as `.envrc` and configure it
3. build your firmware with `MIX_TARGET=my_target mix firmware` For example, `MIX_TARGET=rpi3`
4. burn to you sd card using `mix firmware.burn`## 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
## Learn more
* Official docs: https://hexdocs.pm/nerves/getting-started.html
* Official website: https://nerves-project.org/
* Forum: https://elixirforum.com/c/nerves-forum
* Discussion Slack elixir-lang #nerves ([Invite](https://elixir-slackin.herokuapp.com/))
* Source: https://github.com/nerves-project/nerves