Packages

Driver for CCS811 Ultra-Low Power Digital Gas Sensor for Monitoring Indoor Air Quality

Current section

Files

Jump to
ccs811 lib ccs811 application.ex
Raw

lib/ccs811/application.ex

defmodule Ccs811.Application do
@moduledoc false
use Application
def start(_type, _args) do
opts = [strategy: :one_for_one, name: Ccs811.Supervisor]
children = [
Ccs811.Telemetry
]
Supervisor.start_link(children, opts)
end
end