Beginnings of "RIB" (Radio In Box) Controller
$ mix deps.get # get dependencies
$ mix # compile/run
To get a shell into the running application:
$ iex -S mix
- Rib.Application - Starts and supervises everything related to RIB
- Rib.MQTT - Manages connection to Mosquitto MQTT Server
- DAQC - Elixir support for Pi-Plates DAQC Board (eventually may move to a dependent library)
RIB
expects to be able to make a connection to an MQTT server on localhost in order to work properly. You can install mosquitto
on MacOS for test purposes using the following:
$ brew install mosquitto
$ brew services start mosquitto