Skip to content
This repository has been archived by the owner on Nov 9, 2021. It is now read-only.
/ seattlewaste2mqtt Public archive

A seattle waste collection schedule to mqtt bridge process

License

Notifications You must be signed in to change notification settings

mannkind/seattlewaste2mqtt

Repository files navigation

unmaintained

It appears that in Oct 2021, I lost access to the API. :(

HTTP 403 UNAUTHORIZED

seattlewaste2mqtt

Software License Build Status Coverage Status

An experiment to publish Seattle Collection statuses/dates to MQTT.

Use

The application can be locally built using dotnet build or you can utilize the multi-architecture Docker image(s).

Example

docker run \
-e SEATTLEWASTE__RESOURCES__0__Address="2133 N 61ST ST" \
-e SEATTLEWASTE__RESOURCES__0__Slug="home" \
-e SEATTLEWASTE__MQTT__BROKER="localhost" \
-e SEATTLEWASTE__MQTT__DISCOVERYENABLED="true" \
mannkind/seattlewaste2mqtt:latest

OR

SEATTLEWASTE__RESOURCES__0__Address="2133 N 61ST ST" \
SEATTLEWASTE__RESOURCES__0__Slug="home" \
SEATTLEWASTE__MQTT__BROKER="localhost" \
SEATTLEWASTE__MQTT__DISCOVERYENABLED="true" \
./seattlewaste2mqtt 

Configuration

Configuration happens via environmental variables

SEATTLEWASTE__RESOURCES__#__Address              - The Address for a specific collection
SEATTLEWASTE__RESOURCES__#__Slug                 - The slug to identify the specific address
SEATTLEWASTE__POLLINGINTERVAL                    - [OPTIONAL] The delay between collection lookups, defaults to "0.08:03:31"
SEATTLEWASTE__MQTT__TOPICPREFIX                  - [OPTIONAL] The MQTT topic on which to publish the collection lookup results, defaults to "home/seattle_waste"
SEATTLEWASTE__MQTT__DISCOVERYENABLED             - [OPTIONAL] The MQTT discovery flag for Home Assistant, defaults to false
SEATTLEWASTE__MQTT__DISCOVERYPREFIX              - [OPTIONAL] The MQTT discovery prefix for Home Assistant, defaults to "homeassistant"
SEATTLEWASTE__MQTT__DISCOVERYNAME                - [OPTIONAL] The MQTT discovery name for Home Assistant, defaults to "seattle_waste"
SEATTLEWASTE__MQTT__BROKER                       - [OPTIONAL] The MQTT broker, defaults to "test.mosquitto.org"
SEATTLEWASTE__MQTT__USERNAME                     - [OPTIONAL] The MQTT username, default to ""
SEATTLEWASTE__MQTT__PASSWORD                     - [OPTIONAL] The MQTT password, default to ""

Prior Implementations

Golang