33 _Side = UserInterface.RightSide |
33 _Side = UserInterface.RightSide |
34 |
34 |
35 from MqttMonitor.MqttProtocols import MqttProtocols |
35 from MqttMonitor.MqttProtocols import MqttProtocols |
36 |
36 |
37 # Start-Of-Header |
37 # Start-Of-Header |
38 name = "MQTT Monitor Plugin" |
38 __header__ = { |
39 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
39 "name": "MQTT Monitor Plugin", |
40 autoactivate = True |
40 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
41 deactivateable = True |
41 "autoactivate": True, |
42 version = "11.0.1" |
42 "deactivateable": True, |
43 className = "MqttMonitorPlugin" |
43 "version": "11.0.1", |
44 packageName = "MqttMonitor" |
44 "className": "MqttMonitorPlugin", |
45 shortDescription = "Plug-in implementing a tool to connect to a MQTT broker" |
45 "packageName": "MqttMonitor", |
46 longDescription = ( |
46 "shortDescription": "Plug-in implementing a tool to connect to a MQTT broker", |
47 """Plug-in implementing a tool to connect to a MQTT broker, subscribe""" |
47 "longDescription": ( |
48 """ to topics, present received messages and publish messages.""" |
48 "Plug-in implementing a tool to connect to a MQTT broker, subscribe" |
49 """ It displays broker statistics (the $SYS/# topic tree) and""" |
49 " to topics, present received messages and publish messages." |
50 """ log messages of the underlying paho-mqtt client. This tool""" |
50 " It displays broker statistics (the $SYS/# topic tree) and" |
51 """ supports unencrypted connections (port 1883) as well as encrypted""" |
51 " log messages of the underlying paho-mqtt client. This tool" |
52 """ SSL/TLS connections (port 8883).""" |
52 " supports unencrypted connections (port 1883) as well as encrypted" |
53 ) |
53 " SSL/TLS connections (port 8883)." |
54 needsRestart = False |
54 ), |
55 pyqtApi = 2 |
55 "needsRestart": False, |
|
56 "hasCompiledForms": True, |
|
57 "pyqtApi": 2, |
|
58 } |
56 # End-Of-Header |
59 # End-Of-Header |
57 |
60 |
58 error = "" |
61 error = "" |
59 |
62 |
60 mqttPluginObject = None |
63 mqttPluginObject = None |