https://github.com/jpmens/tempmonitor
A simple MQTT Websocket temperature monitoring page with Arduino support
https://github.com/jpmens/tempmonitor
Last synced: 4 months ago
JSON representation
A simple MQTT Websocket temperature monitoring page with Arduino support
- Host: GitHub
- URL: https://github.com/jpmens/tempmonitor
- Owner: jpmens
- License: mit
- Created: 2014-04-29T15:01:23.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-21T10:13:40.000Z (about 10 years ago)
- Last Synced: 2025-03-08T19:38:22.602Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 473 KB
- Stars: 13
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tempmonitor
A simple web interface which subscribes to an MQTT topic branch to
display the information from a temperature sensor.The screenshot shows an example:

The sensor is an Arduino which publishes a `1` when it comes online to the topic:
```
clients/arduino/192.168.1.216 1
```and which otherwise publishes an integer to the
```
clients/arduino/192.168.1.216/celsius 26
```topic.
The brunt of the work (design, layout, etc.) was stolen from [mqtt-panel](https://github.com/fabaff/mqtt-panel), written by Fabian Affolter.