Erster Stand der Hintergrundprozesse, die auf der Synology unter /volume1/homes/wagner/SolarManager laufen: der Manager selbst, die Sammler je Geraet, die MQTT-Bruecke, der Wecker und - neu hinzugezogen - der AutoAction-Runner, der als Hintergrundprozess hierher gehoert und nicht ins Web-Verzeichnis. Zugangsdaten stehen nicht mehr im Quelltext, sondern in config.ini, die nicht mit eingecheckt wird. Vorlage ist config.ini.example, gelesen wird sie von konfig.py. Betroffen waren solarManager.py (Datenbank und Wattpilot), zeit.py, gatherWaterData.py, wecker.py und skoda_testdaten.py, das sich das Passwort bisher aus dem Quelltext eines anderen Moduls herausgesucht hat. Die Kia-Anbindung ist mit dem Fahrzeug entfallen: kiaTest.py, gatherCarData.py und hyundai_kia_connect_api sind nicht mehr dabei, ebenso gatherInverterData.py, auf das nur noch eine auskommentierte Zeile zeigte. Die mitgelieferten Bibliotheken bleiben im Repository - die NAS hat kein pip, sie muessen neben den Skripten liegen. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
54 lines
1.8 KiB
Python
54 lines
1.8 KiB
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (c) 2014 Roger Light <roger@atchoo.org>
|
|
#
|
|
# All rights reserved. This program and the accompanying materials
|
|
# are made available under the terms of the Eclipse Distribution License v1.0
|
|
# which accompanies this distribution.
|
|
#
|
|
# The Eclipse Distribution License is available at
|
|
# http://www.eclipse.org/org/documents/edl-v10.php.
|
|
#
|
|
# Contributors:
|
|
# Roger Light - initial implementation
|
|
# All rights reserved.
|
|
|
|
# This shows a simple example of an MQTT subscriber using a per-subscription message handler.
|
|
|
|
import context # Ensures paho is in PYTHONPATH
|
|
|
|
import paho.mqtt.client as mqtt
|
|
|
|
|
|
def on_message_msgs(mosq, obj, msg):
|
|
# This callback will only be called for messages with topics that match
|
|
# $SYS/broker/messages/#
|
|
print("MESSAGES: " + msg.topic + " " + str(msg.qos) + " " + str(msg.payload))
|
|
|
|
|
|
def on_message_bytes(mosq, obj, msg):
|
|
# This callback will only be called for messages with topics that match
|
|
# $SYS/broker/bytes/#
|
|
print("BYTES: " + msg.topic + " " + str(msg.qos) + " " + str(msg.payload))
|
|
|
|
|
|
def on_message(mosq, obj, msg):
|
|
# This callback will be called for messages that we receive that do not
|
|
# match any patterns defined in topic specific callbacks, i.e. in this case
|
|
# those messages that do not have topics $SYS/broker/messages/# nor
|
|
# $SYS/broker/bytes/#
|
|
print(msg.topic + " " + str(msg.qos) + " " + str(msg.payload))
|
|
|
|
|
|
mqttc = mqtt.Client(mqtt.CallbackAPIVersion.VERSION2)
|
|
|
|
# Add message callbacks that will only trigger on a specific subscription match.
|
|
mqttc.message_callback_add("$SYS/broker/messages/#", on_message_msgs)
|
|
mqttc.message_callback_add("$SYS/broker/bytes/#", on_message_bytes)
|
|
mqttc.on_message = on_message
|
|
mqttc.connect("mqtt.eclipseprojects.io", 1883, 60)
|
|
mqttc.subscribe("$SYS/#", 0)
|
|
|
|
mqttc.loop_forever()
|