1.0.12 • Published 2 months ago

homebridge-enviroindoor v1.0.12

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 months ago

Pimoroni Enviro Indoor Homebridge Plug-in

This Homebridge plug-in allows you to make the data available from the Pimoroni Enviro Indoor device.

verified-by-homebridge

Setup MQTT broker

This Homebridge plug-in reads the data from an MQTT broker providing the JSON information, for example:

  • {"readings": {"pressure": 1007.95, "temperature": 28.31, "voltage": 4.979, "color_temperature": 0, "gas_resistance": 20605, "aqi": 11.4, "humidity": 37.7, "luminance": 0}, "nickname": "my-air-quality", "model": "indoor", "uid": "xxxxxxxxxxxxxx", "timestamp": "2022-09-20T19:45:02Z"}

You can view the entries on your computer using an MQTT viewer, for example MQTT Explorer

You need to install an MQTT broker on your machine, this can be any machine in your network, including the machine running Homebridge. Here are some instructions for popular distributions:

Raspberry Pi / Ubuntu

In short, you just need to do the following:

sudo apt-get update
sudo apt-get install -y mosquitto mosquitto-clients
sudo systemctl enable mosquitto.service

macOS

Use Homebrew

brew install mosquitto

Windows

Go to the (Mosquitto Download Page)https://mosquitto.org/download/ and choose the right installer for your system.

Enable authentication

A quick search online will provide you with information on how to secure your installation. To help you, I've found the following links for the Raspberry Pi and Ubuntu

Plug-in Installation

Follow the homebridge installation instructions if you haven't already.

Install this plugin globally:

npm install -g homebridge-enviroindoor

Add platform to config.json, for configuration see below.

Plug-in Configuration

The plug-in needs to know where to find the MQTT broker providing the JSON data (e.g. mqtt://127.0.0.1:1883) along with the serial number of the device to uniquely identify it (you can also use your Raspberry Pi Pico identifier).

{
  "platforms": [
    {
      "platform": "EnviroIndoorAirQuality",
      "name": "EnviroIndoor",
      "mqttbroker": "mqtt://127.0.0.1:1883",
      "username": "",
      "password": "",
      "devices": [
        {
          "displayName": "My Enviro Indoor Sensor",
          "serial": "1234567890",
          "topic": "enviro/my-air-quality"
        }
      ]
    }
  ]
}

The following settings are optional:

  • username: the MQTT broker username
  • password: the MQTT broker password

If you have multiple Enviro Indoor devices, then you can list them all in the config giving each one a unique name, MQTT topic and serial number.

1.0.12

2 months ago

1.0.11

10 months ago

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago