An open API service indexing awesome lists of open source software.

https://github.com/smacker/pc321-to-ha


https://github.com/smacker/pc321-to-ha

Last synced: 2 days ago
JSON representation

Awesome Lists containing this project

README

          

# Owon PC321-W to Home Assistant

Convert messages published by PC321-W to the format understandable by Home Assistant.

## Docker compose

```yaml
services:
pc321-to-ha:
image: smacker/pc321-to-ha
restart: unless-stopped
user: ${PUID}:${PGID}
command: -topic device//report -broker tcp://:1883 -user -password
```

Replace ``, `` and `` with the actual values of your MQTT message broker that is connected to PC321-W and Home Assistant.

## Docker build

```bash
docker build --platform linux/amd64 . -t smacker/pc321-to-ha
docker push smacker/pc321-to-ha
```