Particle
Particle Cloud API Client for Elixir:
This is an unofficial client for the Particle IoT platform’s HTTP API.
Usage
Installation
def deps do
[{:particle, "~> 0.1.0"}]
end
and run mix deps.get
. Now, list the :particle application as your application dependency:
def application do
[applications: [:particle]]
end
Configuration
You will need to set the following configuration variables in your config/config.exs
file:
use Mix.Config
config :particle,
particle_key: System.get_env("PARTICLE_KEY")