Initial commit

This commit is contained in:
Sthope 2022-08-27 15:36:22 +02:00
parent 07073f3115
commit 4db6041c1d
6 changed files with 28 additions and 27 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.env

View File

@ -1,8 +1,8 @@
FROM python:3-alpine
MAINTAINER sthopeless <hopelessautomations@gmail.com>
ADD battery2mqtt.py /
ADD laptop2mqtt.py /
RUN pip install paho.mqtt
CMD [ "python", "./battery2mqtt.py" ]
CMD [ "python", "./laptop2mqtt.py" ]

View File

@ -1,30 +1,30 @@
# battery2mqtt
# laptop2mqtt
*Push information about batteries in your system to MQTT*
I thought of this project when I switched to using my old laptop as my Home Assistant server. I wanted to track its battery level in Home Assistant to use in automations. Hopefully others can find it useful as well.
# Summary
`battery2mqtt` can monitor current battery percentage, charging status, etc. for any batteries present at `/sys/class/power_supply`. The MQTT topic format is `battery2mqtt/$TOPIC/$NAME` where `$TOPIC` is the topic you define and `$NAME` is the name of each battery. For example, if `/sys/class/power_supply/BAT0` is present in your system and you choose `server` to be the topic, the full topic will be `battery2mqtt/server/BAT0`. The topic for sensor availability would be `battery2mqtt/server/status`.
`laptop2mqtt` can monitor current battery percentage, charging status, etc. for any batteries present at `/sys/class/power_supply`. The MQTT topic format is `laptop2mqtt/$TOPIC/$NAME` where `$TOPIC` is the topic you define and `$NAME` is the name of each battery. For example, if `/sys/class/power_supply/BAT0` is present in your system and you choose `server` to be the topic, the full topic will be `laptop2mqtt/server/BAT0`. The topic for sensor availability would be `laptop2mqtt/server/status`.
# Instructions
**Option 1: Manual build**
1. Clone repo: `git clone https://github.com/sthopeless/battery2mqtt`
2. Enter directory: `cd battery2mqtt`
3. Build image: `docker build . -t battery2mqtt`
1. Clone repo: `git clone https://github.com/sthopeless/laptop2mqtt`
2. Enter directory: `cd laptop2mqtt`
3. Build image: `docker build . -t laptop2mqtt`
4. Customize `docker-compose.yaml` to fit your needs
5. `docker-compose up -d`
**Option 2: Docker Hub**
1. Follow steps 4 and 5 above using `sthopeless/battery2mqtt:latest` as the image.
1. Follow steps 4 and 5 above using `sthopeless/laptop2mqtt:latest` as the image.
Example docker-compose.yaml with all possible environmental variables listed:
```yaml
version: '3'
services:
battery2mqtt:
container_name: battery2mqtt
image: battery2mqtt:latest
laptop2mqtt:
container_name: laptop2mqtt
image: laptop2mqtt:latest
environment:
- MQTT_HOST=10.0.0.2
- MQTT_PORT=1883
@ -46,7 +46,7 @@ services:
Example `docker run` command with all possible environmental variables:
```
docker run --name battery2mqtt \
docker run --name laptop2mqtt \
-e MQTT_HOST=10.0.0.2 \
-e MQTT_PORT=1883 \
-e MQTT_USER=user \
@ -61,7 +61,7 @@ docker run --name battery2mqtt \
-e AC_ADAPTER=1 \
-e LOG_LEVEL=info \
-v /sys/class/power_supply:/sys/class/power_supply:ro \
sthopeless/battery2mqtt:latest
sthopeless/laptop2mqtt:latest
```
# Configuration
@ -73,7 +73,7 @@ sthopeless/battery2mqtt:latest
| `MQTT_PASSWORD` | `None` | False | The password to send to the MQTT broker. |
| `MQTT_TOPIC` | `server` | True | The topic prefix to send the payload to. |
| `MQTT_QOS` | `1` | False | The MQTT QoS level. |
| `INTERVAL` | `60` | False | How often (in seconds) battery2mqtt polls for battery info. |
| `INTERVAL` | `60` | False | How often (in seconds) laptop2mqtt polls for battery info. |
| `MONITORED_CONDITIONS` | (See below) | True | Battery properties to send to MQTT (must be a comma-separated string). |
| `BATTERY_HEALTH` | `1` | False | Enable/disable battery health percentage calculation. Set to 0 to disable. |
| `TIME_REMAINING` | `1` | False | Enable/disable time remaining estimate (in hours). Set to 0 to disable. |
@ -82,7 +82,7 @@ sthopeless/battery2mqtt:latest
| `LOG_LEVEL` | `info` | False | Set minimum log level. Valid options are `debug`, `info`, `warning`, and `error`. |
# Multiple instances
If you plan on using `battery2mqtt` on more than one machine, it is very important that you use a **different MQTT_TOPIC for each instance**; otherwise, you _will_ experience issues with LWT.
If you plan on using `laptop2mqtt` on more than one machine, it is very important that you use a **different MQTT_TOPIC for each instance**; otherwise, you _will_ experience issues with LWT.
# Monitored conditions
You can specify only those conditions that you'd like to track. The default is to track `status, capacity, energy_now, energy_full, energy_full_design, power_now, voltage_now`. You can add more conditions (found at `/sys/class/power_supply/$NAME`) or choose only those you want to track. The variable in your `docker-compose.yaml` must follow this comma-separated format:
@ -115,11 +115,11 @@ You can monitor the status of the AC adapter (online or offline) by setting `AC_
sensor:
- platform: mqtt
name: Server battery
state_topic: &server_battery_topic "battery2mqtt/server/BAT0"
state_topic: &server_battery_topic "laptop2mqtt/server/BAT0"
value_template: "{{ value_json.capacity }}"
unit_of_measurement: '%'
json_attributes_topic: *server_battery_topic
availability_topic: "battery2mqtt/server/status"
availability_topic: "laptop2mqtt/server/status"
device_class: battery
```

View File

@ -1,15 +1,15 @@
---
version: "3.8"
services:
battery2mqtt:
container_name: battery2mqtt
image: sthopeless/battery2mqtt:${TAG-latest}
laptop2mqtt:
container_name: laptop2mqtt
image: sthopeless/laptop2mqtt:${TAG-latest}
environment:
- MQTT_HOST=${MQTT_HOST}
- MQTT_PORT=${MQTT_PORT-1883}
- MQTT_USER=${MQTT_USERNAME}
- MQTT_PASSWORD=${MQTT_PASSWORD}
- MQTT_TOPIC=${MQTT_TOPIC-battery2mqtt}
- MQTT_TOPIC=${MQTT_TOPIC-laptop2mqtt}
- MQTT_QOS=1
- INTERVAL=60
- MONITORED_CONDITIONS=${SENSORS-status,capacity,energy_now,energy_full,energy_full_design,power_now,voltage_now}

View File

@ -5,7 +5,7 @@ MQTT_USERNAME=username
MQTT_PASSWORD=password
#MQTT_PORT=1883
#MQTT_TOPIC=battery2mqtt
#MQTT_TOPIC=laptop2mqtt
### Choose one
#LOG_LEVEL=info

View File

@ -102,13 +102,13 @@ class Battery:
try:
if not dir.startswith('AC'):
client.publish("battery2mqtt/" + MQTT_TOPIC + '/' + dir, json.dumps(self.payload), MQTT_QOS, False)
client.publish("laptop2mqtt/" + MQTT_TOPIC + '/' + dir, json.dumps(self.payload), MQTT_QOS, False)
if LOG_LEVEL == 'DEBUG':
logging.debug('Sending MQTT payload: ' + str(self.payload))
except Exception as e:
logging.error(f'Message send failed: {e}')
try:
client.publish("battery2mqtt/" + MQTT_TOPIC + '/status', 'online', 0, True)
client.publish("laptop2mqtt/" + MQTT_TOPIC + '/status', 'online', 0, True)
except Exception as e:
logging.error(f'Message send failed: {e}')
sleep(INTERVAL)
@ -117,9 +117,9 @@ def mqtt_connect():
# Connect to MQTT broker and set LWT
try:
client.username_pw_set(MQTT_USER, MQTT_PASSWORD)
client.will_set("battery2mqtt/" + MQTT_TOPIC + '/status', 'offline', 0, True)
client.will_set("laptop2mqtt/" + MQTT_TOPIC + '/status', 'offline', 0, True)
client.connect(MQTT_HOST, MQTT_PORT)
client.publish("battery2mqtt/" + MQTT_TOPIC + '/status', 'online', 0, True)
client.publish("laptop2mqtt/" + MQTT_TOPIC + '/status', 'online', 0, True)
logging.info('Connected to MQTT broker.')
except Exception as e:
logging.error(f'Unable to connect to MQTT broker: {e}')
@ -136,7 +136,7 @@ if __name__ == '__main__':
else:
logging.basicConfig(level=LOG_LEVEL, format='%(asctime)s %(levelname)s: %(message)s')
client = mqtt.Client(f'battery2mqtt_{MQTT_TOPIC}')
client = mqtt.Client(f'laptop2mqtt_{MQTT_TOPIC}')
path = "/sys/class/power_supply/"
dirs = os.listdir(path)
b = Battery()