Popularity
0.4
Growing
Activity
0.0
Stable
0
2
0

Monthly Downloads: 0
Programming language: Elixir
License: MIT License
Tags: Third Party APIs    

honeywell alternatives and similar packages

Based on the "Third Party APIs" category.
Alternatively, view honeywell alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of honeywell or a related project?

Add another 'Third Party APIs' Package

README

Honeywell

Build Status Hex.pm Inline docs Deps Status License

Honeywell Cloud API Client for Elixir:

This is an unofficial client for the Honeywell Round and Water Leak & Freeze Detector APIs.

Usage

Installation

def deps do
  [{:honeywell, "~> 0.1.0"}]
end

and run mix deps.get. Now, list the :honeywell application as your application dependency:

def application do
  [applications: [:honeywell]]
end

Configuration

You will need to set the following configuration variables in your config/config.exs file:

use Mix.Config

config :honeywell,
  client_id: System.get_env("HONEYWELL_CLIENT_ID"),
  client_secret: System.get_env("HONEYWELL_CLIENT_SECRET"),
  site: System.get_env("SITE"),
  redirect_uri: System.get_env("HONEYWELL_REDIRECT_URL")


*Note that all licence references and agreements mentioned in the honeywell README section above are relevant to that project's source code only.