Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattludwigs/smartlamp
Example Nerves project used for a local Elixir meetup
https://github.com/mattludwigs/smartlamp
Last synced: about 1 month ago
JSON representation
Example Nerves project used for a local Elixir meetup
- Host: GitHub
- URL: https://github.com/mattludwigs/smartlamp
- Owner: mattludwigs
- Created: 2021-12-14T19:12:12.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-15T02:57:41.000Z (about 3 years ago)
- Last Synced: 2024-04-14T06:08:30.776Z (9 months ago)
- Language: Elixir
- Size: 55.7 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SmartLamp
SmartLamp example project used for Queen Creek Elixir meetup.
This project is setup in a "poncho project" fashion.
This means all our projects are self contained and can run independently of Nerves.
## What is the responsibilities for each project
1. SmartLampFW - the firmware project that packages your other projects to run on
a nerves system (our chosen targets are rpi3 and rpi0)
1. SmartLamp - this is core library that contains the business logic of our
program - this can be considered your "application"
1. SmartLampUi - this is the user interface to your application## How each project was generated
### SmartLampFW
```bash
mix nerves.new smart_lamp_fw
```### SmartLamp
```bash
mix new SmartLamp
```### SmartLampUi
```bash
mix phx.new smart_lamp_ui --no-ecto --no-mailer
```