File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 1
1
# MQTTNotifier
2
- Windows 10 background application that creates Toast Notifications from MQTT messages.
2
+ Lightweight Windows 10 background application that creates Toast Notifications from MQTT messages.
3
3
4
+ Designed intentionally for simplicity & portability:
5
+ - .NET Framework 4.5.2: probably even runs on Windows 8 (not tested)
6
+ - No additional runtimes, libraries or dependencies
7
+ - Portable: no installation required
8
+
9
+ ![ Screenshot of Windows 11 Toast Notification] ( screenshot.png " Screenshot of Windows 11 Toast Notification ")
10
+
11
+ ## Message formats
4
12
Supports two message formats:
5
13
- Raw: Message text appears as the content
6
14
- JSON (HomeAssistant format): ` {"title": "Message title", "message": "Hello world!"} `
7
15
8
- ![ Screenshot of Windows 11 Toast Notification] ( screenshot.png " Screenshot of Windows 11 Toast Notification ")
9
-
10
16
# Usage
11
17
The program folder can be placed anywhere (e.g. C:\Program Files\MQTTNotifier)
12
18
@@ -15,5 +21,12 @@ Add a shortcut to `MQTTNotifier.exe` in your Startup folder (optional)
15
21
# Configuration
16
22
All configuration is in ` MQTTNotifier.exe.config ` - which must be located beside the executable itself.
17
23
24
+ # Building
25
+ The build toolchain that comes with Windows works:
26
+ ``` bat
27
+ PATH=%PATH%;C:\Windows\Microsoft.NET\Framework\v4.0.30319
28
+ msbuild
29
+ ```
30
+
18
31
# Credits
19
32
Uses the M2MQTT library: https://www.nuget.org/packages/M2Mqtt/
You can’t perform that action at this time.
0 commit comments